summaryrefslogtreecommitdiff
path: root/doc/ci/update/3.1-to-3.2.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ci/update/3.1-to-3.2.md')
-rw-r--r--doc/ci/update/3.1-to-3.2.md30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/ci/update/3.1-to-3.2.md b/doc/ci/update/3.1-to-3.2.md
deleted file mode 100644
index dc6ab6514c6..00000000000
--- a/doc/ci/update/3.1-to-3.2.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Update from 3.1 to 3.2
-
-### 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 3-2-stable
-```
-
-### 4. Install libs, migrations etc
-
-```
-bundle install --without development test --deployment
-bundle exec rake db:migrate RAILS_ENV=production
-```
-
-### 5. Start web application
-
- sudo service gitlab_ci start