diff options
author | James Lopez <james@jameslopez.es> | 2016-06-23 10:47:09 +0200 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-06-23 10:47:09 +0200 |
commit | 8c253997499e285c745da8a5800c38533d7959f7 (patch) | |
tree | 2cdb59c328fb03425da385c62b984a25e5951ab2 /doc/update/6.3-to-6.4.md | |
parent | 16ed545e7cb0177612d327df4007433083763cce (diff) | |
parent | 3f41eecff298d4dbdbc6bead4e9ac0b74e4a0b52 (diff) | |
download | gitlab-ce-8c253997499e285c745da8a5800c38533d7959f7.tar.gz |
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into fix/import-export-gitlab-errors
Diffstat (limited to 'doc/update/6.3-to-6.4.md')
-rw-r--r-- | doc/update/6.3-to-6.4.md | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/update/6.3-to-6.4.md b/doc/update/6.3-to-6.4.md index 951d92dfeb5..37028be055f 100644 --- a/doc/update/6.3-to-6.4.md +++ b/doc/update/6.3-to-6.4.md @@ -36,13 +36,28 @@ sudo -u git -H git checkout v1.8.0 ```bash cd /home/git/gitlab +# The Modernizr gem was yanked from RubyGems. It is required for GitLab >= 2.8.0 +# Edit `Gemfile` and change `gem "modernizr", "2.5.3"` to +# `gem "modernizr-rails", "2.7.1"`` +sudo -u git -H vim Gemfile + # MySQL + +# Run a bundle install without deployment to generate the new Gemfile +sudo -u git -H bundle install --without development test postgres --no-deployment + +# Install libs (with deployment this time) sudo -u git -H bundle install --without development test postgres --deployment # PostgreSQL -sudo -u git -H bundle install --without development test mysql --deployment +# Run a bundle install without deployment to generate the new Gemfile +sudo -u git -H bundle install --without development test mysql --no-deployment + +# Install libs (with deployment this time) +sudo -u git -H bundle install --without development test mysql --deployment +# Both MySQL and PostgreSQL # Run database migrations sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production |