diff options
| author | Matt Valentine-House <matt@eightbitraptor.com> | 2024-12-02 18:00:01 +0000 |
|---|---|---|
| committer | Matt Valentine-House <matt@eightbitraptor.com> | 2024-12-06 09:48:30 +0000 |
| commit | 58b4e249ed8d33fc78528bc77516d541c04d65f2 (patch) | |
| tree | b639f827171e3a6b168c257fbe39a10d11ee5160 | |
| parent | 7caf2ffe00ed7ac195058f4ff07056a287ca0f8d (diff) | |
[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
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12212
| -rw-r--r-- | .github/workflows/modgc.yml | 1 | ||||
| -rw-r--r-- | bootstraptest/test_ractor.rb | 3 |
2 files changed, 3 insertions, 1 deletions
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 |
