-
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
Add CI for sample Java applications #73
Conversation
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.
Thank you for creating a new CI!
I left minor suggestions.
Please take a look when you have time! 🙇♀️
Co-authored-by: kota2and3kan <[email protected]>
Co-authored-by: kota2and3kan <[email protected]>
Co-authored-by: kota2and3kan <[email protected]>
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.
LGTM! 👍
name: CI | ||
|
||
on: | ||
push: |
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.
[minor] Probably this can be removed with some configurations as well as scalar-labs/scalardb#1620
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.
LGTM! Thank you!
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.
LGTM! Thank you!
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.
LGTM! Thank you!
Description
Currently, our sample Java applications for ScalarDB do not have CI.
These sample applications should be able to be built with all Java versions we support (i.e., 8, 11, 17, and 21), and this should be verified in CI.
So, in this PR, I add a CI that runs
./gradlew build
for all the sample Java applications.Related issues and/or PRs
In the following PRs we have fixed the sample applications so that they work with all Java versions we support (i.e., 8, 11, 17, and 21):
Changes made
./gradlew build
for all the sample applications except for the followings:Checklist
Additional notes (optional)
I'll fix the documentation of the sample applications after this PR is merged into the main branch.