diff options
author | Jason Plum <jplum@gitlab.com> | 2018-11-20 15:47:18 -0500 |
---|---|---|
committer | Jason Plum <jplum@gitlab.com> | 2018-11-20 16:18:13 -0500 |
commit | fe124b99b1a92f0e135eb8aafd9113539eae21e8 (patch) | |
tree | cf7518fa4092e49b6c8adfef05f3baadbe50d36a | |
parent | 98f84238230c94a46a9864a5a267becd67d30b50 (diff) | |
download | gitlab-ce-charts-gitlab-937-pass-compile-assets.tar.gz |
CI: Add COMPILE_ASSETS to cng build triggercharts-gitlab-937-pass-compile-assets
Add `COMPILE_ASSETS=true` to CNG build trigger.
This stems from https://gitlab.com/charts/gitlab/issues/937, where we
needed to add asset compilation to the CNG image pipelines when using
`<= 11.5.x`. This is only needed on versions prior to `11.5`, as they
do not have the asset compilation container backported.
-rwxr-xr-x | scripts/trigger-build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/trigger-build b/scripts/trigger-build index 0b5fd5995dd..edf6530c3b9 100755 --- a/scripts/trigger-build +++ b/scripts/trigger-build @@ -117,7 +117,8 @@ module Trigger { "GITLAB_#{edition}_VERSION" => ENV['CI_COMMIT_REF_NAME'], - "#{edition}_PIPELINE" => 'true' + "#{edition}_PIPELINE" => 'true', + "COMPILE_ASSETS" => 'true' } end |