summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2015-09-22 13:42:47 +0200
committerJacob Vosmaer <contact@jacobvosmaer.nl>2015-09-22 13:42:47 +0200
commit1afaf5f7fb3074bfc698dca6d598ae3e0d73b21d (patch)
tree137d3d250e8b29434fcb3b163e2b681cc508eb2a
parentc3805c1830e203c6782f06502d2eebf05e9f5745 (diff)
downloadgitlab-ce-1afaf5f7fb3074bfc698dca6d598ae3e0d73b21d.tar.gz
Fix ordering of paragraphs and code blocks
-rw-r--r--doc/migrate_ci_to_ce/README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/migrate_ci_to_ce/README.md b/doc/migrate_ci_to_ce/README.md
index f74cbee9d07..83fd447ff07 100644
--- a/doc/migrate_ci_to_ce/README.md
+++ b/doc/migrate_ci_to_ce/README.md
@@ -55,14 +55,7 @@ https://about.gitlab.com/getting-help/
the same database adapter no special care is needed. If your CI server uses
MySQL and your GitLab server uses PostgreSQL you need to pass a special option
during the 'Moving data' part. **If your CI server uses PostgreSQL and your
-GitLab server uses MySQL you cannot migrate your CI data to GitLab 8.0.***
-
-- (3) Decide where to store CI build traces on GitLab server. GitLab CI uses
- files on disk to store CI build traces. The default path for these build
-traces is `/var/opt/gitlab/gitlab-ci/build` (Omnibus) or
-`/home/git/gitlab/builds` (Source). If you are storing your repository data in
-a special location, or if you are using NFS, you should make sure that you
-store build traces on the same storage as your Git repositories.
+GitLab server uses MySQL you cannot migrate your CI data to GitLab 8.0.**
```
# CI server
@@ -84,6 +77,13 @@ cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
```
+- (3) Decide where to store CI build traces on GitLab server. GitLab CI uses
+ files on disk to store CI build traces. The default path for these build
+traces is `/var/opt/gitlab/gitlab-ci/build` (Omnibus) or
+`/home/git/gitlab/builds` (Source). If you are storing your repository data in
+a special location, or if you are using NFS, you should make sure that you
+store build traces on the same storage as your Git repositories.
+
### Upgrading
From this point on, GitLab CI will be unavailable for your end users.