summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2015-05-04 15:13:56 +0300
committerValery Sizov <vsv2711@gmail.com>2015-05-04 15:13:56 +0300
commite6ebd997ab1b5a2dfbaa1248c064fe040edcdbd4 (patch)
treee354911729fd69d7ebe910e607ddff602a8a1d6e /doc
parentf1b60b0516c691d2a2917b2ff06a582e6bec4eed (diff)
downloadgitlab-ci-e6ebd997ab1b5a2dfbaa1248c064fe040edcdbd4.tar.gz
update guide from 7.9 -> 7.10
Diffstat (limited to 'doc')
-rw-r--r--doc/update/7.9-to-7.10.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/update/7.9-to-7.10.md b/doc/update/7.9-to-7.10.md
new file mode 100644
index 0000000..2b54874
--- /dev/null
+++ b/doc/update/7.9-to-7.10.md
@@ -0,0 +1,49 @@
+# Update from 7.9 to 7.10
+
+## Notice
+
+__GitLab CI 7.10 requires GitLab 7.10 or higher and GitLab CI Runner v5__
+
+### 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-10-stable
+```
+
+#### Redis config
+
+If you have `config/resque.yml` file - please update it with recent `config/resque.yml.example`
+
+### 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