-
-
Notifications
You must be signed in to change notification settings - Fork 88
chore: Upgrade build deps to ensure compatible with Scala Native #178
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 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5c589f9
chore: Upgrade build deps to ensure compatible with Scala Native
lqhuang 68d2580
chore: Update versions of GitHub Actions
lqhuang b5ef43a
Update build.mill
lihaoyi cd919cf
chore: Update mill version to 0.12.5 (Close #181)
lqhuang a094614
chore: Depreate versions that donot have scala 3 release in binary check
lqhuang bd4f194
chore: Add `scalaNextVersion` and add it into GitHub CI Actions
lqhuang e085b0d
bugfix: Fix `-i/--interactive/--no-server/--bsp must be passed in as …
lqhuang 419aac2
bugfix: Make mima check passed
lqhuang b7455ab
bugfix: Fix statusCode assertation in test case "selfSignedCertificate"
lqhuang a6f4740
Reverit return status code to 200
lqhuang 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 |
---|---|---|
|
@@ -15,10 +15,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: ['11', '17'] | ||
java: ['11', '17', '21'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ matrix.java }} | ||
|
@@ -28,13 +28,13 @@ jobs: | |
check-binary-compatibility: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-java@v3 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 11 | ||
java-version: 17 | ||
- name: Check Binary Compatibility | ||
run: ./mill -i __.mimaReportBinaryIssues | ||
|
||
|
@@ -47,12 +47,12 @@ jobs: | |
SONATYPE_PGP_PRIVATE_KEY_PASSWORD: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }} | ||
SONATYPE_USER: ${{ secrets.SONATYPE_USER }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
LANG: "en_US.UTF-8" | ||
LC_MESSAGES: "en_US.UTF-8" | ||
LC_ALL: "en_US.UTF-8" | ||
LANG: 'en_US.UTF-8' | ||
LC_MESSAGES: 'en_US.UTF-8' | ||
LC_ALL: 'en_US.UTF-8' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 11 | ||
|
@@ -73,6 +73,7 @@ jobs: | |
fi | ||
- name: Create GitHub Release | ||
id: create_gh_release | ||
# WARN: `actions/create-release` is currently unmaintained. It just works now, keep it until it breaks. | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
|
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
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.
Uh oh!
There was an error while loading. Please reload this page.