8bacdfb243
This will prevent the task to advertise using https://gitlab-ci-token:xxxxxxxxxxxxxxxxxxxx@gitlab.com/gitlab-org/gitlab-ce.git when https://gitlab.com/gitlab-org/gitlab-ce.git is enough Signed-off-by: Rémy Coutable <remy@rymai.me>
23 lines
541 B
Ruby
23 lines
541 B
Ruby
namespace :gitlab do
|
|
namespace :dev do
|
|
desc 'Checks if the branch would apply cleanly to EE'
|
|
task :ee_compat_check, [:branch] => :environment do |_, args|
|
|
opts =
|
|
if ENV['CI']
|
|
{ branch: ENV['CI_BUILD_REF_NAME'] }
|
|
else
|
|
unless args[:branch]
|
|
puts "Must specify a branch as an argument".color(:red)
|
|
exit 1
|
|
end
|
|
args
|
|
end
|
|
|
|
if Gitlab::EeCompatCheck.new(opts || {}).check
|
|
exit 0
|
|
else
|
|
exit 1
|
|
end
|
|
end
|
|
end
|
|
end
|