Skip to content
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

feat: add support for GraalVM build #228

Merged
merged 2 commits into from
Nov 1, 2023
Merged

Conversation

ttosta-google
Copy link
Contributor

@ttosta-google ttosta-google commented Oct 10, 2023

Fixes #36

As discussed the GraalVM job will run on periodic (schedule) event as it takes from 7 to 10min to finish (example)

@ttosta-google ttosta-google changed the title chore: enable graalvm CI build feat: add support for GraalVM builds Oct 19, 2023
@ttosta-google ttosta-google changed the title feat: add support for GraalVM builds feat: add support for GraalVM build Oct 31, 2023
@ttosta-google ttosta-google marked this pull request as ready for review October 31, 2023 15:53
.github/workflows/ci.yaml Outdated Show resolved Hide resolved
Comment on lines 193 to 194
# only run flakybot on periodic (schedule) and continuous (push) events
if: ${{ (github.event_name == 'schedule' || github.event_name == 'push') && runner.os == 'Linux' && always() }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the parent level job is only being run on schedule then this child check is unnecessary and can be removed

Suggested change
# only run flakybot on periodic (schedule) and continuous (push) events
if: ${{ (github.event_name == 'schedule' || github.event_name == 'push') && runner.os == 'Linux' && always() }}
# run flakybot even on failures
if: always()

Copy link
Contributor Author

@ttosta-google ttosta-google Nov 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed. Thanks!

Copy link
Contributor

@jackwotherspoon jackwotherspoon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: remove child logic that is unnecessary

@ttosta-google ttosta-google merged commit 006f285 into main Nov 1, 2023
16 checks passed
@ttosta-google ttosta-google deleted the enable-graalvm-ci branch November 1, 2023 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for GraalVM builds in CI
3 participants