-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable CI for MMTk/Ruby #80
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This PR enables CI for MMTk's fork of CRuby. There are a few notable changes: - Adds CI builds via github actions for all mmtk plans. - Adds skip files for all the tests that can't run on mmtk because of implementation details (ie no garbage compaction, tracepoints, etc). - Fixes issues in the tests, see original PR commits for descriptions. What's not fixed: - All the plans still sometimes fail. Immix, StickyImmix, and MarkSweep sometimes pass so the CRuby tests are fixed, but there are panics coming from the rust side of things that we need to fix. I've not been able to repro these on macos yet. - NoGC in the current state, can't pass because github actions doesn't have enough memory. Co-authored-by: Matthew Valentine-House <[email protected]> Co-authored-by: Peter Zhu <[email protected]>
wks
pushed a commit
that referenced
this pull request
Aug 22, 2024
This PR enables CI for MMTk's fork of CRuby. There are a few notable changes: - Adds CI builds via github actions for all mmtk plans. - Adds skip files for all the tests that can't run on mmtk because of implementation details (ie no garbage compaction, tracepoints, etc). - Fixes issues in the tests, see original PR commits for descriptions. What's not fixed: - All the plans still sometimes fail. Immix, StickyImmix, and MarkSweep sometimes pass so the CRuby tests are fixed, but there are panics coming from the rust side of things that we need to fix. I've not been able to repro these on macos yet. - NoGC in the current state, can't pass because github actions doesn't have enough memory. Co-authored-by: Matthew Valentine-House <[email protected]> Co-authored-by: Peter Zhu <[email protected]> Cherry-picked from: 9c68561 Original PR: #80
This was referenced Aug 22, 2024
wks
added a commit
to wks/mmtk-ruby
that referenced
this pull request
Aug 22, 2024
The Ruby repository cherry-picked mmtk/ruby#80 onto the dev/mmtk-overrides-default branch which will follow the official master branch. It added CI scripts and excluded some tests using Ruby scripts in the `.excludes-mmtk/` directory. With this change, it should be, in theory, possible to selectively run tests runnable for MMTk without using the whitelist `ruby-test-cases.txt` in this repo. However, some test cases still crashes due to bugs in the binding. We'll still use the whitelist for running binding tests for the mmtk-core repo, until we fix those crashes so that `make test-all` can finish safely with MMTk enabled. For this reason, we are not changing the CI scripts in this repository.
wks
added a commit
to wks/mmtk-ruby
that referenced
this pull request
Aug 22, 2024
The Ruby repository cherry-picked mmtk/ruby#80 onto the dev/mmtk-overrides-default branch which will follow the official master branch. It added a CI scripts and excluded some tests using Ruby scripts in the `.excludes-mmtk/` directory. We add an option to `make test-all` to take the `.excludes-mmtk` directory into consideration. With this change, it should be, in theory, possible to selectively run tests runnable for MMTk without using the whitelist `ruby-test-cases.txt` in this repo. However, some test cases still crashes due to bugs in the binding. We'll still use the whitelist for running binding tests for the mmtk-core repo, until we fix those crashes so that `make test-all` can finish safely with MMTk enabled.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I thought we might want a cleaner PR so I've squashed everything and gotten rid of debug code in the other PR. Rel: #78
It's not passing 100% of the time, we still have some issues with panic's from the rust code, but I think we should merge this and keep working on that in the mean time.
This PR enables CI for MMTk's fork of CRuby. There are a few notable changes:
What's not fixed: