This repository was archived by the owner on May 12, 2018. It is now read-only.
File tree 5 files changed +47
-5
lines changed
5 files changed +47
-5
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Possible Cases:
72
72
![ screen] ( https://gitlab.com/gitlab-org/gitlab-ci/raw/master/app/assets/images/arch.jpg )
73
73
74
74
For 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 / )
76
76
and
77
77
[ Integrating GitLab CI With GitLab to Enable Distributed Builds] ( http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/ )
78
78
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.
104
104
105
105
cd gitlab-ci
106
106
107
- sudo -u gitlab_ci -H git checkout 5-0 -stable
107
+ sudo -u gitlab_ci -H git checkout 5-1 -stable
108
108
109
109
## 6. Setup application
110
110
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 1
1
# 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/ ) .
2
2
3
- ### 1. stop CI server
3
+ ### 1. Stop CI server
4
4
5
5
sudo service gitlab_ci stop
6
6
@@ -11,7 +11,7 @@ sudo su gitlab_ci
11
11
cd /home/gitlab_ci/gitlab-ci
12
12
```
13
13
14
- ### 3. get latest code
14
+ ### 3. Get latest code
15
15
16
16
```
17
17
git pull origin STABLE_BRANCH
You can’t perform that action at this time.
0 commit comments