1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/wercker.yml
k0kubun f2dfe96d17 wercker.yml: profile slow tests
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-10-23 14:06:36 +00:00

43 lines
2 KiB
YAML

#
# Wercker is dedicated for testing MJIT. Please use Travis or AppVeyor for non-MJIT testing.
# This runs all Ruby tests with --jit-wait, which synchronously JITs all methods.
#
box: k0kubun/mjit-test # move this to some ruby/xxx repository
no-response-timeout: 30
command-timeout: 60
build:
steps:
- script:
name: workaround ipv6 localhost
code: ruby -e "hosts = File.read('/etc/hosts').sub(/^::1\s*localhost.*$/, ''); File.write('/etc/hosts', hosts)"
- script:
name: show last commit
code: git log -n1
- script:
name: change owner to test user # using "test" user because some test-all tests fail with root user.
code: 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 -- bash -c 'make -j$(nproc) all install'
- 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"'
- 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"'
after-steps:
- wantedly/pretty-slack-notify:
webhook_url: $SLACK_WEBHOOK_URL
channel: alerts
notify_on: "failed"
branches: ^trunk$