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

Commit

Permalink
release 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vsizov committed Oct 23, 2014
1 parent 7be89a9 commit d69e6b7
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Possible Cases:
![screen](https://gitlab.com/gitlab-org/gitlab-ci/raw/master/app/assets/images/arch.jpg)

For more information see:
[Announcing GitLab CI 3.0](http://blog.gitlab.org/announcing-gitlab-ci-3.0/)
[Announcing GitLab CI 5.1](http://blog.gitlab.org/2014/10/22/gitlab-ci-5-dot-1-released/)
and
[Integrating GitLab CI With GitLab to Enable Distributed Builds](http://blog.gitlab.org/integrating-gitlab-ci-with-gitlab/)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0.rc1
5.1.0
2 changes: 1 addition & 1 deletion doc/install/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You can use either MySQL or PostgreSQL.

cd gitlab-ci

sudo -u gitlab_ci -H git checkout 5-0-stable
sudo -u gitlab_ci -H git checkout 5-1-stable

## 6. Setup application

Expand Down
42 changes: 42 additions & 0 deletions doc/update/5.0-to-5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Update from 5.0 to 5.1

__GitLab CI 5.1 requires GitLab 6.3 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 5-1-stable
```

#### Redis config

If you have `config/resque.yml` file - please update it with recent `config/resque.yml.example`

### 4. Install libs, migrations etc

```
# 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
4 changes: 2 additions & 2 deletions doc/update/patch_versions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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/).

### 1. stop CI server
### 1. Stop CI server

sudo service gitlab_ci stop

Expand All @@ -11,7 +11,7 @@ sudo su gitlab_ci
cd /home/gitlab_ci/gitlab-ci
```

### 3. get latest code
### 3. Get latest code

```
git pull origin STABLE_BRANCH
Expand Down

0 comments on commit d69e6b7

Please sign in to comment.