This repository was archived by the owner on May 12, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +47
-5
lines changed Expand file tree Collapse file tree 5 files changed +47
-5
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Possible Cases:
7272![ screen] ( https://gitlab.com/gitlab-org/gitlab-ci/raw/master/app/assets/images/arch.jpg )
7373
7474For more information see:
75- [ Announcing GitLab CI 3.0 ] ( http://blog.gitlab.org/announcing- gitlab-ci-3.0 / )
75+ [ Announcing GitLab CI 5.1 ] ( http://blog.gitlab.org/2014/10/22/ gitlab-ci-5-dot-1-released / )
7676and
7777[ Integrating GitLab CI With GitLab to Enable Distributed Builds] ( http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/ )
7878
Original file line number Diff line number Diff line change 1- 5.1.0.rc1
1+ 5.1.0
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ You can use either MySQL or PostgreSQL.
104104
105105 cd gitlab-ci
106106
107- sudo -u gitlab_ci -H git checkout 5-0 -stable
107+ sudo -u gitlab_ci -H git checkout 5-1 -stable
108108
109109## 6. Setup application
110110
Original file line number Diff line number Diff line change 1+ # Update from 5.0 to 5.1
2+
3+ __ GitLab CI 5.1 requires GitLab 6.3 or higher and GitLab CI Runner v5__
4+
5+ ### 1. stop CI server
6+
7+ sudo service gitlab_ci stop
8+
9+ ### 2. Switch to your gitlab_ci user
10+
11+ ```
12+ sudo su gitlab_ci
13+ cd /home/gitlab_ci/gitlab-ci
14+ ```
15+
16+ ### 3. Get latest code
17+
18+ ```
19+ git fetch
20+ git checkout 5-1-stable
21+ ```
22+
23+ #### Redis config
24+
25+ If you have ` config/resque.yml ` file - please update it with recent ` config/resque.yml.example `
26+
27+ ### 4. Install libs, migrations etc
28+
29+ ```
30+ # For MySQL users
31+ bundle install --without postgres development test --deployment
32+
33+ # For Postgres users
34+ bundle install --without mysql development test --deployment
35+
36+ # Run migrations
37+ bundle exec rake db:migrate RAILS_ENV=production
38+ ```
39+
40+ ### 5. Start web application
41+
42+ sudo service gitlab_ci start
Original file line number Diff line number Diff line change 11# Universal update guide for patch versions. For example from 4.0.0 to 4.0.1, also see the [ semantic versioning specification] ( http://semver.org/ ) .
22
3- ### 1. stop CI server
3+ ### 1. Stop CI server
44
55 sudo service gitlab_ci stop
66
@@ -11,7 +11,7 @@ sudo su gitlab_ci
1111cd /home/gitlab_ci/gitlab-ci
1212```
1313
14- ### 3. get latest code
14+ ### 3. Get latest code
1515
1616```
1717git pull origin STABLE_BRANCH
You can’t perform that action at this time.
0 commit comments