Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
8
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in
Toggle navigation
Menu
Open sidebar
gitlab-qa-sandbox-group
qa-test-2019-05-06-03-38-42-40f225278db2df81
add-member-project-38ac0d05ff9a6e41
Commits
c7b53e4a
Commit
c7b53e4a
authored
Sep 28, 2015
by
Robert Speicher
Browse files
Add 7.14-to-8.0 update guide
[ci skip]
parent
6c72e71b
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/update/7.14-to-8.0.md
0 → 100644
View file @
c7b53e4a
# Update from 7.14 to 8.0
## Notice
__
As of version 8.0, GitLab CI has been merged into GitLab CE and EE. Version
8.
0 of GitLab exists to ease the migration process and is required for
converting an existing CI installation into an existing CE (or EE)
installation.__
For more information on the migration process, see the [migration docs].
### 1. Stop CI server
sudo service gitlab_ci stop
### 2. Switch to your gitlab_ci user
```
bash
sudo
su gitlab_ci
cd
/home/gitlab_ci/gitlab-ci
```
### 3. Get latest code
```
bash
git fetch
git checkout 8-0-stable
```
### 4. Install libs, migrations etc
```
bash
# Install nodejs dependency:
sudo
apt-get
install
nodejs
# 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
[
migration docs
]:
http://doc.gitlab.com/ce/migrate_ci_to_ce/
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment