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:
authorRémy Coutable <remy@rymai.me>2016-10-17 19:52:14 +0300
committerRémy Coutable <remy@rymai.me>2016-10-21 20:16:56 +0300
commitaf669cbea386d900ec86510f7d43de6ca4c1771e (patch)
tree213fd3c23a893ac1d58be0c7b841b23287ecc417 /lib/tasks/ee_compat_check.rake
parent6ff3625f636b1b4ba94370d5b7ce4afbe0b29a95 (diff)
Change the approach to check if patches apply cleanly
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/tasks/ee_compat_check.rake')
-rw-r--r--lib/tasks/ee_compat_check.rake4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/tasks/ee_compat_check.rake b/lib/tasks/ee_compat_check.rake
new file mode 100644
index 00000000000..f494fa5c5c2
--- /dev/null
+++ b/lib/tasks/ee_compat_check.rake
@@ -0,0 +1,4 @@
+desc 'Checks if the branch would apply cleanly to EE'
+task ee_compat_check: :environment do
+ Rake::Task['gitlab:dev:ee_compat_check'].invoke
+end