Skip to content
This repository was archived by the owner on May 12, 2018. It is now read-only.

Commit d69e6b7

Browse files
committed
release 5.1
1 parent 7be89a9 commit d69e6b7

File tree

5 files changed

+47
-5
lines changed

5 files changed

+47
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

7474
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/)
7676
and
7777
[Integrating GitLab CI With GitLab to Enable Distributed Builds](http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/)
7878

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0.rc1
1+
5.1.0

doc/install/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

doc/update/5.0-to-5.1.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

doc/update/patch_versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
1111
cd /home/gitlab_ci/gitlab-ci
1212
```
1313

14-
### 3. get latest code
14+
### 3. Get latest code
1515

1616
```
1717
git pull origin STABLE_BRANCH

0 commit comments

Comments
 (0)