diff options
-rw-r--r-- | .expeditor/config.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml index 1357f447c2..ac2ec7360e 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -29,25 +29,25 @@ pipelines: - verify: public: true env: - - IGNORE_ARTIFACTORY_RUBY_PROXY: true # Artifactory is throwing 500's when downloading some gems. + - IGNORE_ARTIFACTORY_RUBY_PROXY: false # Artifactory is throwing 500's when downloading some gems. - validate/release: definition: .expeditor/verify.pipeline.yml env: - IGNORE_CACHE: true # caching causes constant build failures - - IGNORE_ARTIFACTORY_RUBY_PROXY: true + - IGNORE_ARTIFACTORY_RUBY_PROXY: false - validate/adhoc: definition: .expeditor/verify.adhoc.pipeline.yml env: - ADHOC: true - IGNORE_CACHE: true # caching causes constant build failures - - IGNORE_ARTIFACTORY_RUBY_PROXY: true # Artifactory is throwing 500's when downloading some gems. + - IGNORE_ARTIFACTORY_RUBY_PROXY: false # Artifactory is throwing 500's when downloading some gems. - validate/adhoc-canary: canary: true definition: .expeditor/verify.adhoc.pipeline.yml env: - ADHOC: true - IGNORE_CACHE: true # caching causes constant build failures - - IGNORE_ARTIFACTORY_RUBY_PROXY: true # Artifactory is throwing 500's when downloading some gems. + - IGNORE_ARTIFACTORY_RUBY_PROXY: false # Artifactory is throwing 500's when downloading some gems. - docker/build: definition: .expeditor/docker-build.pipeline.yml trigger: default @@ -58,20 +58,20 @@ pipelines: - omnibus/release: env: - IGNORE_CACHE: true # caching causes constant build failures - - IGNORE_ARTIFACTORY_RUBY_PROXY: true + - IGNORE_ARTIFACTORY_RUBY_PROXY: false - omnibus/adhoc: definition: .expeditor/release.omnibus.yml env: - ADHOC: true - IGNORE_CACHE: true # caching causes constant build failures - - IGNORE_ARTIFACTORY_RUBY_PROXY: true + - IGNORE_ARTIFACTORY_RUBY_PROXY: false # the adhoc-canary pipeline is used to test new omnibus workers - omnibus/adhoc-canary: canary: true definition: .expeditor/adhoc-canary.omnibus.yml env: - ADHOC: true - - IGNORE_ARTIFACTORY_RUBY_PROXY: true + - IGNORE_ARTIFACTORY_RUBY_PROXY: false - macos_universal_package: description: Builds universal macos package using arch specific packages definition: .expeditor/macos_universal_package.pipeline.yml |