-
Notifications
You must be signed in to change notification settings - Fork 7
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
Conversation
b000e65
to
2b8bc90
Compare
b979c6a
to
f07abfe
Compare
alloydb-jdbc-connector/src/main/java/com/google/cloud/alloydb/nativeimage/AlloyDBFeature.java
Outdated
Show resolved
Hide resolved
6aeec75
to
c44c3cb
Compare
c44c3cb
to
d8400a8
Compare
.github/workflows/ci.yaml
Outdated
# only run flakybot on periodic (schedule) and continuous (push) events | ||
if: ${{ (github.event_name == 'schedule' || github.event_name == 'push') && runner.os == 'Linux' && always() }} |
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.
If the parent level job is only being run on schedule
then this child check is unnecessary and can be removed
# 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() |
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.
Removed. Thanks!
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.
nit: remove child logic that is unnecessary
Fixes #36
As discussed the GraalVM job will run on periodic (schedule) event as it takes from 7 to 10min to finish (example)