From fe124b99b1a92f0e135eb8aafd9113539eae21e8 Mon Sep 17 00:00:00 2001 From: Jason Plum Date: Tue, 20 Nov 2018 15:47:18 -0500 Subject: CI: Add COMPILE_ASSETS to cng build trigger 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. --- scripts/trigger-build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1