diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-29 23:06:43 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-01-29 23:06:43 -0800 |
commit | 23c31a0b12eaae7f7f25f30eca1066968bcb6059 (patch) | |
tree | ac85bba9ffceb14af4aad670e7fe3e1b86ee01a4 /lib/tasks | |
parent | b7cf72f6eaad22a08081f4576447e52cebd5cf15 (diff) | |
download | gitlab-ce-23c31a0b12eaae7f7f25f30eca1066968bcb6059.tar.gz |
Skip tricky test for semaphore
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/spinach.rake | 8 |
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 |