summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-08-18 13:00:54 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2022-08-29 09:09:41 -0700
commitd5fe9e1d9aabacb7bafe97dbbc63b0272be84dee (patch)
tree6e7e88813d642ffef0d859c13538bd1bc48d80d1 /.cirrus.yml
parentf883aabc13d334771da926e632dca5758bb506c8 (diff)
Run test-all with RUBY_YJIT_ENABLE=1 on CI (https://github.com/Shopify/ruby/pull/418)
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/6289
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 21f3e38651..a00946e90c 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -172,4 +172,5 @@ yjit_task:
# Run John's YJIT instruction tests, and make sure we can load the test-all runner
test_yjit_script: source $HOME/.cargo/env && make -j test-all TESTS='test/ruby/test_method.rb test/ruby/test_yjit.rb' RUN_OPTS="--yjit-call-threshold=1"
- # TODO: check that we can we run all of test-all successfully
+ # Run test-all with the default call threshold
+ test_yjit_script: source $HOME/.cargo/env && RUBY_YJIT_ENABLE=1 make -j test-all