ruby-changes:68925
From: Aaron <ko1@a...>
Date: Thu, 21 Oct 2021 08:16:36 +0900 (JST)
Subject: [ruby-changes:68925] 9f46e6e64b (master): Disable YJIT while running MJIT tests (#62)
https://git.ruby-lang.org/ruby.git/commit/?id=9f46e6e64b From 9f46e6e64b826f555dd9cf80839f1aa89fdc36fd Mon Sep 17 00:00:00 2001 From: Aaron Patterson <aaron.patterson@s...> Date: Wed, 2 Jun 2021 10:02:42 -0700 Subject: Disable YJIT while running MJIT tests (#62) Two JITs running at once may result in strange interactions. Lets disable YJIT while running the MJIT tests. --- .github/workflows/mjit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index 63011e78d0..b45dc29a55 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -10,7 +10,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L10 runs-on: ubuntu-latest env: TESTOPTS: '-q --tty=no' - RUN_OPTS: '--disable-gems ${{ matrix.jit_opts }} --jit-debug=-ggdb3' + RUN_OPTS: '--disable-gems ${{ matrix.jit_opts }} --jit-debug=-ggdb3 --disable-yjit' GITPULLOPTIONS: --no-tags origin ${{github.ref}} steps: - run: mkdir build -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/