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
path: root/lib
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-11-18 13:42:39 +0300
committerRobert Speicher <robert@gitlab.com>2016-11-18 13:42:39 +0300
commitec3b1c6d6e6aac5791625efcefba09e1b3644e96 (patch)
tree98e0b4b3ad62423039733565c79d585303b7b1f3 /lib
parent75c8faf7ba76563a175766495e132b2f6bdc95d4 (diff)
parent8bacdfb2434d0ac64d3a18bd9f9b19e3596ee19b (diff)
Merge branch 'use-public-repo-url-in-ee_compat_check-task' into 'master'
Use the public CE repo URL instead of the one used in the runner See the commit message to understand the reason of this change. See merge request !7555
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/dev.rake5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/tasks/gitlab/dev.rake b/lib/tasks/gitlab/dev.rake
index 3117075b08b..7db0779def8 100644
--- a/lib/tasks/gitlab/dev.rake
+++ b/lib/tasks/gitlab/dev.rake
@@ -4,10 +4,7 @@ namespace :gitlab do
task :ee_compat_check, [:branch] => :environment do |_, args|
opts =
if ENV['CI']
- {
- branch: ENV['CI_BUILD_REF_NAME'],
- ce_repo: ENV['CI_BUILD_REPO']
- }
+ { branch: ENV['CI_BUILD_REF_NAME'] }
else
unless args[:branch]
puts "Must specify a branch as an argument".color(:red)