mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 9edbcbcba1
			
		
	
	
		9edbcbcba1
		
	
	
	
	
		
			
			Some test seems to hang https://app.wercker.com/ruby/ruby/runs/mjit-test1/5bf1221c183106002855989c?step=5bf1225987436a0006192c31 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			282 lines
		
	
	
	
		
			24 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			282 lines
		
	
	
	
		
			24 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| #
 | |
| # Wercker is dedicated for testing MJIT. Please use Travis or AppVeyor for non-MJIT testing.
 | |
| # This runs all Ruby tests with --jit, or --jit-wait which synchronously JITs all methods.
 | |
| #
 | |
| box: ruby:2.5-stretch
 | |
| no-response-timeout: 30
 | |
| command-timeout: 60
 | |
| 
 | |
| ### Code to generate test-all definition with --jit-wait ###
 | |
| # This aims to relax no-output timeout, and to isolate TracePoint testing since JIT is not supporting trace_* insns for now.
 | |
| 
 | |
| # allow_failures = []
 | |
| # dirs = Dir.glob('test/*/').sort
 | |
| # index = 1
 | |
| # puts <<-EOS
 | |
| #     - script:
 | |
| #         name: make test-all#{index} -- others (JIT wait)
 | |
| #         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTOPTS="#{dirs.map { |d| "--exclude #{d}" }.join(' ')} --color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
| # EOS
 | |
| # dirs.each do |dir|
 | |
| #   index += 1
 | |
| #   puts <<-EOS
 | |
| #     - script:
 | |
| #         name: make test-all#{index} -- #{dir} (JIT wait#{(', allow failure' if allow_failures.include?(dir))})
 | |
| #         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="#{dir}" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"#{(' || true' if allow_failures.include?(dir))}
 | |
| #   EOS
 | |
| # end
 | |
| 
 | |
| # --jit + first half of --jit-wait.
 | |
| mjit-test1:
 | |
|   steps:
 | |
|     - install-packages:
 | |
|         packages: bison sudo
 | |
|     - script:
 | |
|         name: workaround ipv6 localhost
 | |
|         code: ruby -e "hosts = File.read('/etc/hosts').sub(/^::1\s*localhost.*$/, ''); File.write('/etc/hosts', hosts)"
 | |
|     - script:
 | |
|         name: create user # some file permission tests don't succeed with root.
 | |
|         code: useradd --shell /bin/bash --create-home test && chown -R test:test .
 | |
|     - script:
 | |
|         name: configure
 | |
|         code: /usr/bin/sudo -H -u test -- bash -c 'autoconf && ./configure --disable-install-doc --prefix=/tmp/ruby-prefix'
 | |
|     - script:
 | |
|         name: make all install
 | |
|         code: /usr/bin/sudo -H -u test -- make -j$(nproc) all install
 | |
| 
 | |
|     # --jit
 | |
|     - script:
 | |
|         name: make test (JIT)
 | |
|         code: /usr/bin/sudo -H -u test -- make test RUN_OPTS="--disable-gems --jit --jit-warnings"
 | |
|     - script:
 | |
|         name: make test-spec (JIT)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-spec RUN_OPTS="--disable-gems --jit --jit-warnings"
 | |
|     - script:
 | |
|         name: make test-all (JIT)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit --jit-warnings" TESTOPTS="-v --color=never --job-status=normal --longest 10 --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit"
 | |
| 
 | |
|     # --jit-wait
 | |
|     - script:
 | |
|         name: make test (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test RUN_OPTS="--disable-gems --jit-wait --jit-warnings"
 | |
|     - 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"
 | |
| 
 | |
|     # -- AUTO GENERATED 1st half START (by above code) ---
 | |
|     - script:
 | |
|         name: make test-all1 -- others (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTOPTS="--exclude test/-ext-/ --exclude test/base64/ --exclude test/benchmark/ --exclude test/bigdecimal/ --exclude test/cgi/ --exclude test/coverage/ --exclude test/csv/ --exclude test/date/ --exclude test/dbm/ --exclude test/digest/ --exclude test/drb/ --exclude test/dtrace/ --exclude test/erb/ --exclude test/etc/ --exclude test/excludes/ --exclude test/fiddle/ --exclude test/fileutils/ --exclude test/gdbm/ --exclude test/io/ --exclude test/irb/ --exclude test/json/ --exclude test/lib/ --exclude test/logger/ --exclude test/matrix/ --exclude test/minitest/ --exclude test/misc/ --exclude test/mkmf/ --exclude test/monitor/ --exclude test/net/ --exclude test/nkf/ --exclude test/objspace/ --exclude test/open-uri/ --exclude test/openssl/ --exclude test/optparse/ --exclude test/ostruct/ --exclude test/pathname/ --exclude test/psych/ --exclude test/rdoc/ --exclude test/readline/ --exclude test/resolv/ --exclude test/rexml/ --exclude test/rinda/ --exclude test/ripper/ --exclude test/rss/ --exclude test/ruby/ --exclude test/rubygems/ --exclude test/scanf/ --exclude test/sdbm/ --exclude test/shell/ --exclude test/socket/ --exclude test/stringio/ --exclude test/strscan/ --exclude test/syslog/ --exclude test/testunit/ --exclude test/uri/ --exclude test/webrick/ --exclude test/win32ole/ --exclude test/yaml/ --exclude test/zlib/ --color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all2 -- test/-ext-/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/-ext-/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all3 -- test/base64/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/base64/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all4 -- test/benchmark/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/benchmark/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all5 -- test/bigdecimal/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/bigdecimal/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all6 -- test/cgi/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/cgi/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all7 -- test/coverage/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/coverage/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all8 -- test/csv/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/csv/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all9 -- test/date/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/date/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all10 -- test/dbm/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/dbm/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all11 -- test/digest/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/digest/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all12 -- test/drb/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/drb/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all13 -- test/dtrace/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/dtrace/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all14 -- test/erb/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/erb/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all15 -- test/etc/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/etc/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all16 -- test/excludes/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/excludes/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all17 -- test/fiddle/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/fiddle/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all18 -- test/fileutils/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/fileutils/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all19 -- test/gdbm/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/gdbm/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all20 -- test/io/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/io/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all21 -- test/irb/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/irb/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all22 -- test/json/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/json/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all23 -- test/lib/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/lib/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all24 -- test/logger/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/logger/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all25 -- test/matrix/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/matrix/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all26 -- test/minitest/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/minitest/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all27 -- test/misc/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/misc/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all28 -- test/mkmf/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/mkmf/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all29 -- test/monitor/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/monitor/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all30 -- test/net/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/net/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all31 -- test/nkf/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/nkf/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all32 -- test/objspace/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/objspace/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all33 -- test/open-uri/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/open-uri/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all34 -- test/openssl/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/openssl/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all35 -- test/optparse/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/optparse/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all36 -- test/ostruct/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/ostruct/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all37 -- test/pathname/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/pathname/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all38 -- test/psych/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/psych/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     # -- AUTO GENERATED 1st half END ---
 | |
|   after-steps:
 | |
|     - wantedly/pretty-slack-notify:
 | |
|       webhook_url: $SLACK_WEBHOOK_URL
 | |
|       username: Wercker mjit-test1
 | |
|       channel: alerts
 | |
|       notify_on: "failed"
 | |
|       branches: ^trunk$
 | |
| 
 | |
| # second half of --jit-wait.
 | |
| mjit-test2:
 | |
|   steps:
 | |
|     - install-packages:
 | |
|         packages: bison sudo
 | |
|     - script:
 | |
|         name: workaround ipv6 localhost
 | |
|         code: ruby -e "hosts = File.read('/etc/hosts').sub(/^::1\s*localhost.*$/, ''); File.write('/etc/hosts', hosts)"
 | |
|     - script:
 | |
|         name: create user # some file permission tests don't succeed with root.
 | |
|         code: useradd --shell /bin/bash --create-home test && chown -R test:test .
 | |
|     - script:
 | |
|         name: configure
 | |
|         code: /usr/bin/sudo -H -u test -- bash -c 'autoconf && ./configure --disable-install-doc --prefix=/tmp/ruby-prefix'
 | |
|     - script:
 | |
|         name: make all install
 | |
|         code: /usr/bin/sudo -H -u test -- make -j$(nproc) all install
 | |
| 
 | |
|     # -- AUTO GENERATED 2nd half START (by above code) ---
 | |
|     - script:
 | |
|         name: make test-all39 -- test/rdoc/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/rdoc/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all40 -- test/readline/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/readline/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all41 -- test/resolv/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/resolv/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all42 -- test/rexml/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/rexml/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all43 -- test/rinda/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/rinda/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all44 -- test/ripper/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/ripper/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all45 -- test/rss/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/rss/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all46 -- test/ruby/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/ruby/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all47 -- test/rubygems/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/rubygems/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all48 -- test/scanf/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/scanf/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all49 -- test/sdbm/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/sdbm/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all50 -- test/shell/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/shell/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all51 -- test/socket/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/socket/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all52 -- test/stringio/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/stringio/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all53 -- test/strscan/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/strscan/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all54 -- test/syslog/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/syslog/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all55 -- test/testunit/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/testunit/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all56 -- test/uri/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/uri/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all57 -- test/webrick/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/webrick/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all58 -- test/win32ole/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/win32ole/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all59 -- test/yaml/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/yaml/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     - script:
 | |
|         name: make test-all60 -- test/zlib/ (JIT wait)
 | |
|         code: /usr/bin/sudo -H -u test -- make test-all RUN_OPTS="--disable-gems --jit-wait --jit-warnings" TESTS="test/zlib/" TESTOPTS="--color=never --job-status=normal --subprocess-timeout-scale=3.0 --excludes=test/excludes/_wercker/jit-wait"
 | |
|     # -- AUTO GENERATED 2nd half END ---
 | |
|   after-steps:
 | |
|     - wantedly/pretty-slack-notify:
 | |
|       webhook_url: $SLACK_WEBHOOK_URL
 | |
|       username: Wercker mjit-test2
 | |
|       channel: alerts
 | |
|       notify_on: "failed"
 | |
|       branches: ^trunk$
 |