diff options
author | Aaron Patterson <aaron.patterson@shopify.com> | 2021-06-02 10:02:42 -0700 |
---|---|---|
committer | Alan Wu <XrXr@users.noreply.github.com> | 2021-10-20 18:19:35 -0400 |
commit | 9f46e6e64b826f555dd9cf80839f1aa89fdc36fd (patch) | |
tree | f9d5ca8ce60b3c10c55ab130f349888d9ce808eb | |
parent | ea33b0a9baa26e96b1a34d7823ec0235d0e0bd90 (diff) | |
download | ruby-9f46e6e64b826f555dd9cf80839f1aa89fdc36fd.tar.gz |
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.
-rw-r--r-- | .github/workflows/mjit.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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: 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 |