Skip to content

Commit

Permalink
[MMTk/CI] Skip Ractor btests with MMTk
Browse files Browse the repository at this point in the history
currently these are flaky, so until we can make them more robust, we'll
skip them for MMTk CI
  • Loading branch information
eightbitraptor committed Dec 5, 2024
1 parent 3369531 commit 625c5c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/modgc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion bootstraptest/test_ractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@
###
# 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

Expand Down

0 comments on commit 625c5c9

Please sign in to comment.