summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-09-02 11:55:55 +0200
committerMarin Jankovski <maxlazio@gmail.com>2015-09-02 11:55:55 +0200
commit5e3985ebd11ecc3d44d722eb41804e7017cea46b (patch)
tree48422befa38d855be68fb3d9a07cf7c781fb850f /doc
parentafce0073424a8879b889477de4c9ab1690447a8f (diff)
parent79a2f8856a75ce9011234a8b76fec861b0e7ad5a (diff)
downloadgitlab-ci-5e3985ebd11ecc3d44d722eb41804e7017cea46b.tar.gz
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ci
Diffstat (limited to 'doc')
-rw-r--r--doc/update/7.13-to-7.14.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/doc/update/7.13-to-7.14.md b/doc/update/7.13-to-7.14.md
new file mode 100644
index 0000000..11ec279
--- /dev/null
+++ b/doc/update/7.13-to-7.14.md
@@ -0,0 +1,45 @@
+# Update from 7.13 to 7.14
+
+## Notice
+
+__GitLab CI 7.14 requires GitLab 7.12 or higher and GitLab Multi Runner 0.5.0 or higher
+
+### 1. Stop CI server
+
+ sudo service gitlab_ci stop
+
+### 2. Switch to your gitlab_ci user
+
+```
+sudo su gitlab_ci
+cd /home/gitlab_ci/gitlab-ci
+```
+
+### 3. Get latest code
+
+```
+git fetch
+git checkout 7-14-stable
+```
+
+### 4. Install libs, migrations etc
+
+
+```
+# Install nodejs dependency:
+sudo apt-get install nodejs
+
+# For MySQL users
+bundle install --without postgres development test --deployment
+
+# For Postgres users
+bundle install --without mysql development test --deployment
+
+# Run migrations
+bundle exec rake db:migrate RAILS_ENV=production
+```
+
+
+### 5. Start web application
+
+ sudo service gitlab_ci start