Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBalasankar C <balasankar@gitlab.com>2017-05-25 14:31:15 +0300
committerBalasankar C <balasankar@gitlab.com>2017-05-25 14:31:15 +0300
commit88811a7733c14e363c8cc86ad6841d3fff7b83f1 (patch)
treed6819a6505e03ea8eb55666bd09392e267771845 /scripts
parent78de1c059ac588df4ba1ef352b28e5b1c6102804 (diff)
Pass EE variable if needed
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/trigger-build3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/trigger-build b/scripts/trigger-build
index 565bc314ef1..e4603533872 100755
--- a/scripts/trigger-build
+++ b/scripts/trigger-build
@@ -8,7 +8,8 @@ params = {
"ref" => ENV["OMNIBUS_BRANCH"] || "master",
"token" => ENV["BUILD_TRIGGER_TOKEN"],
"variables[GITLAB_VERSION]" => ENV["CI_COMMIT_SHA"],
- "variables[ALTERNATIVE_SOURCES]" => true
+ "variables[ALTERNATIVE_SOURCES]" => true,
+ "variables[ee]" => ENV["EE_PACKAGE"]
}
Dir.glob("*_VERSION").each do |version_file|