-
-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use older JDK, and turns out it was our runner causing issues
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
- os: ubuntu-22.04 | ||
name: Linux | ||
nuke_invoke: ./build.sh | ||
- os: windows-2022 | ||
- os: windows-latest # runner is not setup for android yet | ||
name: Windows | ||
nuke_invoke: ./build.cmd BuildLibSilkDroid | ||
- os: macos-14 | ||
|
@@ -53,11 +53,11 @@ jobs: | |
continue-on-error: true | ||
if: runner.os == 'Windows' | ||
run: dotnet tool install --global PowerShell | ||
- name: Setup Java JDK 21 | ||
- name: Setup Java JDK 11 | ||
uses: actions/[email protected] | ||
if: runner.os == 'Windows' | ||
with: | ||
java-version: 21 | ||
java-version: 11 | ||
distribution: "temurin" | ||
- name: Set PATH | ||
if: runner.os == 'Windows' | ||
|