diff options
author | Rémy Coutable <remy@rymai.me> | 2017-10-31 14:24:45 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-10-31 17:44:07 +0100 |
commit | b2373e3d6c1acca3222c5a3ab3ee509bbcfc797c (patch) | |
tree | d18e7dda7a19f70e0c14990aee7c92859a225298 /lib/tasks | |
parent | c598283a16951ba9c951023adbfb29f56ee73311 (diff) | |
download | gitlab-ce-b2373e3d6c1acca3222c5a3ab3ee509bbcfc797c.tar.gz |
Ensure the ee-compat-check uses the correct patch URL for forks39628-bug-in-the-procedure-advised-from-ee_compat_check
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gitlab/dev.rake | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/tasks/gitlab/dev.rake b/lib/tasks/gitlab/dev.rake index 930b4bc13e2..ba221e44e5d 100644 --- a/lib/tasks/gitlab/dev.rake +++ b/lib/tasks/gitlab/dev.rake @@ -5,10 +5,9 @@ namespace :gitlab do opts = if ENV['CI'] { - # We don't use CI_REPOSITORY_URL since it includes `gitlab-ci-token:xxxxxxxxxxxxxxxxxxxx@` - # which is confusing in the steps suggested in the job's output. - ce_repo: "#{ENV['CI_PROJECT_URL']}.git", - branch: ENV['CI_COMMIT_REF_NAME'] + ce_project_url: ENV['CI_PROJECT_URL'], + branch: ENV['CI_COMMIT_REF_NAME'], + job_id: ENV['CI_JOB_ID'] } else unless args[:branch] |