diff options
author | Rémy Coutable <remy@rymai.me> | 2019-05-14 23:32:58 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-08-14 14:04:31 +0200 |
commit | 63dad2c39c23a0714bd35cd84497a4ee36fd30fd (patch) | |
tree | 8b171dc5050eec467955e48519b8122725d7a461 /scripts | |
parent | 16f3f33e748d61b494f8815501e2a884d114255d (diff) | |
download | gitlab-ce-optimize-job-dependencies-and-cache.tar.gz |
Optimize the use of cache and dependencies in CI pipelineoptimize-job-dependencies-and-cache
The idea is to only pull & push from/to cache from the `setup-test-env`
and `compile-assets` jobs, and only pull the required artifacts from all
the other jobs.
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/gitaly_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gitaly_test.rb b/scripts/gitaly_test.rb index b5cc5118530..b528e7cbbb8 100644 --- a/scripts/gitaly_test.rb +++ b/scripts/gitaly_test.rb @@ -31,7 +31,7 @@ module GitalyTest if ENV['CI'] bundle_path = File.expand_path('../vendor/gitaly-ruby', __dir__) - env_hash['BUNDLE_FLAGS'] << " --path=#{bundle_path}" + env_hash['BUNDLE_FLAGS'] << " --path=#{bundle_path} --quiet" end env_hash |