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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-30 10:06:43 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-30 10:06:43 +0300
commit23c31a0b12eaae7f7f25f30eca1066968bcb6059 (patch)
treeac85bba9ffceb14af4aad670e7fe3e1b86ee01a4 /lib
parentb7cf72f6eaad22a08081f4576447e52cebd5cf15 (diff)
Skip tricky test for semaphore
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/spinach.rake8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/tasks/spinach.rake b/lib/tasks/spinach.rake
index 507b315759d..ac885f315b9 100644
--- a/lib/tasks/spinach.rake
+++ b/lib/tasks/spinach.rake
@@ -2,9 +2,15 @@ Rake::Task["spinach"].clear if Rake::Task.task_defined?('spinach')
desc "GITLAB | Run spinach"
task :spinach do
+ tags = if ENV['SEMAPHORE']
+ '~@tricky,~@wip'
+ else
+ '~@wip'
+ end
+
cmds = [
%W(rake gitlab:setup),
- %W(spinach),
+ %W(spinach --tags #{tags}),
]
run_commands(cmds)
end