From 58b4e249ed8d33fc78528bc77516d541c04d65f2 Mon Sep 17 00:00:00 2001 From: Matt Valentine-House Date: Mon, 2 Dec 2024 18:00:01 +0000 Subject: [PATCH] [MMTk/CI] Skip Ractor btests with MMTk currently these are flaky, so until we can make them more robust, we'll skip them for MMTk CI --- .github/workflows/modgc.yml | 1 + bootstraptest/test_ractor.rb | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/modgc.yml b/.github/workflows/modgc.yml index dc6223baa1..8b40783648 100644 --- a/.github/workflows/modgc.yml +++ b/.github/workflows/modgc.yml @@ -124,6 +124,7 @@ jobs: echo 'MMTK_PLAN=${{ matrix.gc.mmtk_plan }}' >> $GITHUB_ENV echo 'EXCLUDES=../src/test/.excludes-mmtk' >> $GITHUB_ENV echo 'MSPECOPT=-B../src/spec/mmtk.mspec' >> $GITHUB_ENV + echo 'GITHUB_WORKFLOW=ModGC' >> $GITHUB_ENV if: ${{ matrix.gc.name == 'mmtk' }} - run: $SETARCH make diff --git a/bootstraptest/test_ractor.rb b/bootstraptest/test_ractor.rb index 4c6e2d576f..22e1533364 100644 --- a/bootstraptest/test_ractor.rb +++ b/bootstraptest/test_ractor.rb @@ -215,7 +215,8 @@ assert_equal '[:a, :b, :c, :d, :e, :f, :g]', %q{ ### # Ractor still has several memory corruption so skip huge number of tests if ENV['GITHUB_WORKFLOW'] && - ENV['GITHUB_WORKFLOW'] == 'Compilations' + (ENV['GITHUB_WORKFLOW'] == 'Compilations' || + ENV['GITHUB_WORKFLOW'] == 'ModGC') # ignore the follow else