-
Notifications
You must be signed in to change notification settings - Fork 109
Make tests run under the 256 tests limit; give this repo the ❤️ it deserves. #778
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2b11966
Test only the changed libraries on relevant JDKs
vjovanov ded3509
Add infrastructure-changed matrix
vjovanov d3a07fa
Add separate tests for changed infrastructure
vjovanov 59c4765
Move the pull request template to .github
vjovanov 0676148
Add ci.json for matrix specs
vjovanov d1b88d0
Test all in batches
vjovanov f467d37
Add build arguments to ci.json
vjovanov 8cc7aff
Give this repo the ❤️ it deserves
vjovanov aaf3d18
Abandon JDK 17-doesn't work for new libs
vjovanov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| metadata/* @oracle/graalvm-reachability-maintainer | ||
| tests/* @oracle/graalvm-reachability-maintainer | ||
| tests/src/* @oracle/graalvm-reachability-maintainer | ||
| tests/tck-build-logic/* @vjovanov | ||
| tests/tck-build-logic/src/main/resources/allowed-docker-images/* @matneu | ||
| library-and-framework-list.json @fniephaus | ||
| .github/* @vjovanov | ||
| docs/* @vjovanov | ||
| docs/* @vjovanov @ban-mi | ||
| README.md @vjovanov @ban-mi | ||
| gradle/* @vjovanov | ||
| /* @vjovanov |
File renamed without changes.
This file contains hidden or 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 file contains hidden or 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 file contains hidden or 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 file contains hidden or 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 file contains hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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 file was deleted.
Oops, something went wrong.
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: "Test changed build logic" | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| paths-ignore: | ||
| - "tests/tck-build-logic/**" | ||
| - "gradle/**" | ||
| - "build.gradle" | ||
| - "settings.gradle" | ||
| - "gradle.properties" | ||
|
|
||
| jobs: | ||
| get-changed-infrastructure: | ||
| name: "📋 Get a list of libraries to test for build-logic changes" | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - run: 'echo "No build required"' | ||
|
|
||
| all-infrastructure-passed: | ||
| name: "🧪 All build-logic triggered tests have passed" | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - run: 'echo "No build required"' |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not different from the previous implementation, but running arbitrary shell commands from remote makes me kind of nervous. Maybe we should at least have a checksum to ensure the remote repo hasn't been compromised.