From 278b639b7794f7c5a5287dded119d5bc02ec73d2 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 13 Mar 2023 21:41:28 -0700 Subject: [PATCH] Disable RJIT_FORCE_ENABLE CI for now Somehow btest-ruby is running miniruby. Not sure why. https://github.com/ruby/ruby/actions/runs/4412043427/jobs/7731124729#step:16:402 For RJIT's experimental purposes, having just one CI is enough. I'd like to focus on keeping .github/workflows/rjit.yml green. --- .github/workflows/compilers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 36526bf499..8922e342b8 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -200,7 +200,7 @@ jobs: - { name: enable-yjit, env: { append_configure: '--enable-yjit --disable-rjit' }, rust: true } - { name: enable-rjit, env: { append_configure: '--enable-rjit --disable-yjit' } } - { name: YJIT_FORCE_ENABLE, env: { cppflags: '-DYJIT_FORCE_ENABLE' }, rust: true } - - { name: RJIT_FORCE_ENABLE, env: { cppflags: '-DRJIT_FORCE_ENABLE' } } +# - { name: RJIT_FORCE_ENABLE, env: { cppflags: '-DRJIT_FORCE_ENABLE' } } name: ${{ matrix.entry.name }} runs-on: ubuntu-latest