diff options
author | Rémy Coutable <remy@rymai.me> | 2017-03-22 23:46:20 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-03-23 11:50:00 +0100 |
commit | d4bffeda364f7be103cafa2a51919c627d8c04cd (patch) | |
tree | 53908efff2aff0ffc63ed0a6a19ad902278e7eef /.gitlab-ci.yml | |
parent | 3918c303b967e33ec924d7435ba4e7fcac136c9a (diff) | |
download | gitlab-ce-d4bffeda364f7be103cafa2a51919c627d8c04cd.tar.gz |
Run bundle install after checking out $CI_COMMIT_SHA
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f506b1b375e..24627b5faca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -333,6 +333,7 @@ migration paths: - bundle install --without postgres production --jobs $(nproc) $FLAGS --retry=3 - bundle exec rake db:drop db:create db:schema:load db:seed_fu - git checkout $CI_COMMIT_SHA + - bundle install --without postgres production --jobs $(nproc) $FLAGS --retry=3 - source scripts/prepare_build.sh - bundle exec rake db:migrate |