8000 [MMTk/CI] Skip Ractor btests with MMTk · github/ruby@58b4e24 · GitHub
[go: up one dir, main page]

Skip to content

Commit 58b4e24

Browse files
[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
1 parent 7caf2ff commit 58b4e24

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/modgc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ jobs:
124124
echo 'MMTK_PLAN=${{ matrix.gc.mmtk_plan }}' >> $GITHUB_ENV
125125
echo 'EXCLUDES=../src/test/.excludes-mmtk' >> $GITHUB_ENV
126126
echo 'MSPECOPT=-B../src/spec/mmtk.mspec' >> $GITHUB_ENV
127+
echo 'GITHUB_WORKFLOW=ModGC' >> $GITHUB_ENV
127128
if: ${{ matrix.gc.name == 'mmtk' }}
128129

129130
- run: $SETARCH make

bootstraptest/test_ractor.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@
215215
###
216216
# Ractor still has several memory corruption so skip huge number of tests
217217
if ENV['GITHUB_WORKFLOW'] &&
218-
ENV['GITHUB_WORKFLOW'] == 'Compilations'
218+
(ENV['GITHUB_WORKFLOW'] == 'Compilations' ||
219+
ENV['GITHUB_WORKFLOW'] == 'ModGC')
219220
# ignore the follow
220221
else
221222

0 commit comments

Comments
 (0)
0