summaryrefslogtreecommitdiff
path: root/wercker.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-24 09:52:01 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-24 09:52:01 +0000
commit9d93d8b15ea47e53d9d1231a5f0a11a379cf3548 (patch)
tree935fa51d7f1b40b11e350ddaeb0ea0f8ab323e80 /wercker.yml
parente3bd6ef7c4728d0489ac1e3ed0ec5834a0596cb9 (diff)
wercker.yml: try to split test-all again
TestParallel in test/testunit/... seems to be slow. Let's see if this contributes to loosen timeout or not. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wercker.yml')
-rw-r--r--wercker.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/wercker.yml b/wercker.yml
index 9e74b6f479..b907a1ddf6 100644
--- a/wercker.yml
+++ b/wercker.yml
@@ -58,9 +58,13 @@ test-mjit-wait:
- script:
name: make test (JIT wait)
code: /usr/bin/sudo -H -u test -- make test RUN_OPTS="--disable-gems --jit-wait --jit-warnings"
+ # split test-all to 2 steps to loosen timeout
- script:
- name: make test-all (JIT wait)
- code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTOPTS="--color=never --job-status=normal --longest 10 --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker"
+ name: make test-all1 (JIT wait)
+ code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/ruby/ test/testunit/" TESTOPTS="--color=never --job-status=normal --longest 10 --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker"
+ - script:
+ name: make test-all2 (JIT wait)
+ code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTOPTS="--exclude test/ruby/ --exclude test/testunit/ --color=never --job-status=normal --longest 10 --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker"
- script:
name: make test-spec (JIT wait)
code: /usr/bin/sudo -H -u test -- make test-spec RUN_OPTS="--disable-gems --jit-wait --jit-warnings"