Skip to content

Commit

Permalink
Install bundler in the CI docker script right before usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
dombesz committed Dec 15, 2023
1 parent e74eb4e commit 002b541
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/ci/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ setup_tests() {
execute_quiet "cp docker/ci/database.yml config/"
create_db_cluster

run_background execute "BUNDLE_JOBS=8 bundle install --quiet && bundle clean --force && echo BUNDLE DONE"
execute "gem install bundler --version '${BUNDLER_VERSION}' --no-document"

run_background execute "BUNDLE_JOBS=8 bundle install --quiet && bundle clean --force && echo BUNDLE DONE"
run_background execute "JOBS=8 time npm install --quiet && npm prune --quiet && echo NPM DONE"
wait_for_background

Expand Down

0 comments on commit 002b541

Please sign in to comment.