diff options
author | Z.J. van de Weg <git@zjvandeweg.nl> | 2016-11-23 09:02:40 +0100 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2016-11-23 09:02:40 +0100 |
commit | 2f8fa73b40193954e97ae580bab8df45f3c10c5a (patch) | |
tree | 8e5699cf5880b81dc5bc59b61ad77d9ef86fb1fc /.gitlab-ci.yml | |
parent | 0676c5c7140ccf5b809eddab79b6fb78b7db0a66 (diff) | |
download | gitlab-ce-2f8fa73b40193954e97ae580bab8df45f3c10c5a.tar.gz |
Fix BASH usage in the .gitlab-ci.ymlzj-fix-flags-usage-gitlab-ci-yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b65bc4182b..d7a1df383ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ before_script: - source ./scripts/prepare_build.sh - cp config/gitlab.yml.example config/gitlab.yml - bundle --version - - '[ "$USE_BUNDLE_INSTALL" != "true" ] || retry bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"' + - '[ "$USE_BUNDLE_INSTALL" != "true" ] || retry bundle install --without postgres production --jobs $(nproc) $FLAGS' - retry gem install knapsack - '[ "$SETUP_DB" != "true" ] || bundle exec rake db:drop db:create db:schema:load db:migrate add_limits_mysql' @@ -328,7 +328,7 @@ migration paths: - git checkout -f FETCH_HEAD - cp config/resque.yml.example config/resque.yml - sed -i 's/localhost/redis/g' config/resque.yml - - bundle install --without postgres production --jobs $(nproc) ${FLAGS[@]} --retry=3 + - bundle install --without postgres production --jobs $(nproc) $FLAGS --retry=3 - rake db:drop db:create db:schema:load db:seed_fu - git checkout $CI_BUILD_REF - source scripts/prepare_build.sh |