ruby-changes:53133
From: k0kubun <ko1@a...>
Date: Wed, 24 Oct 2018 18:52:07 +0900 (JST)
Subject: [ruby-changes:53133] k0kubun:r65347 (trunk): wercker.yml: try to split test-all again
k0kubun 2018-10-24 18:52:01 +0900 (Wed, 24 Oct 2018) New Revision: 65347 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65347 Log: 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. Modified files: trunk/wercker.yml Index: wercker.yml =================================================================== --- wercker.yml (revision 65346) +++ wercker.yml (revision 65347) @@ -58,9 +58,13 @@ test-mjit-wait: https://github.com/ruby/ruby/blob/trunk/wercker.yml#L58 - 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" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/