summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2023-09-13 18:16:37 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2023-09-13 19:42:51 -0400
commitf644996f2e6d41e9c3d2aeda326bb81d1bdf32d0 (patch)
tree31f08798624b6d7ee56b09369c021fd82c261f86
parent3d453bc672863e437c47caab47d0db5aab6e8629 (diff)
For YJIT Actions, don't filter test-spec backtraces
I'm trying to debug a flaky `RuntimeError: nested #it` failure in ruby/spec. Hopefully the full backtrace will give some clues. Last occurence: https://github.com/ruby/ruby/actions/runs/6172578817/job/16753137038
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8436
-rw-r--r--.github/workflows/yjit-ubuntu.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/yjit-ubuntu.yml b/.github/workflows/yjit-ubuntu.yml
index 45c7a22444..2cf0e90123 100644
--- a/.github/workflows/yjit-ubuntu.yml
+++ b/.github/workflows/yjit-ubuntu.yml
@@ -158,7 +158,7 @@ jobs:
run: ./miniruby --yjit -v | grep "+YJIT"
- name: make ${{ matrix.test_task }}
- run: make -s -j ${{ matrix.test_task }} RUN_OPTS="$RUN_OPTS" YJIT_BENCH_OPTS="$YJIT_BENCH_OPTS" YJIT_BINDGEN_DIFF_OPTS="$YJIT_BINDGEN_DIFF_OPTS"
+ run: make -s -j ${{ matrix.test_task }} RUN_OPTS="$RUN_OPTS" MSPECOPT=--debug YJIT_BENCH_OPTS="$YJIT_BENCH_OPTS" YJIT_BINDGEN_DIFF_OPTS="$YJIT_BINDGEN_DIFF_OPTS"
timeout-minutes: 60
env:
RUBY_TESTOPTS: '-q --tty=no'