summaryrefslogtreecommitdiff
path: root/wercker.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-23 15:09:49 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-23 15:09:49 +0000
commitabfc5470c0f4fda781abc6648945ffe7cc141257 (patch)
tree2be2476e8ef25e93b0d1dbb4e3d4b26b503a1abd /wercker.yml
parent66bfa2b872671613e927a0240c52f742e738c3a5 (diff)
wercker.yml: stop splitting test-all
since it actually doesn't contribute to CI build time so much, rather it seems making it worse. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wercker.yml')
-rw-r--r--wercker.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/wercker.yml b/wercker.yml
index 63f85728a9..02a9b966cc 100644
--- a/wercker.yml
+++ b/wercker.yml
@@ -25,13 +25,9 @@ build:
- script:
name: make test (JIT)
code: /usr/bin/sudo -H -u test -- bash -c 'make test RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
- # split test-all to 2 steps to loosen timeout
- script:
- name: make test-all1 (JIT) # only: test/ruby/
- code: /usr/bin/sudo -H -u test -- bash -c 'make test-all TESTS="test/ruby/" TESTOPTS="--color=never --job-status=normal --longest 10" RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
- - script:
- name: make test-all2 (JIT) # except: test/ruby/
- code: /usr/bin/sudo -H -u test -- bash -c 'make test-all TESTOPTS="--exclude test/ruby/ --color=never --job-status=normal --longest 10" RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
+ name: make test-all (JIT)
+ code: /usr/bin/sudo -H -u test -- bash -c 'make test-all TESTOPTS="--color=never --job-status=normal --longest 10" RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'
- script:
name: make test-spec (JIT)
code: /usr/bin/sudo -H -u test -- bash -c 'make test-spec RUN_OPTS="--disable-gems --jit-wait --jit-warnings"'