Skip to content

Commit

Permalink
Update CI jextract
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Nov 1, 2023
1 parent 5c24fad commit 2c1a134
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: matrix.os == 'windows-latest'
shell: powershell
run: |
Invoke-WebRequest https://download.java.net/java/early_access/jextract/1/openjdk-20-jextract+1-2_windows-x64_bin.tar.gz -OutFile jextract.tar.gz
Invoke-WebRequest https://download.java.net/java/early_access/jextract/1/openjdk-21-jextract+1-2_windows-x64_bin.tar.gz -OutFile jextract.tar.gz
tar xzvf jextract.tar.gz
- name: Setup MacOS signing
Expand Down
2 changes: 1 addition & 1 deletion app/desktop/uwp_helper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tasks {

// I cannot figure out how to change the path on GitHub Actions
val command = if (System.getenv("GITHUB_RUN_NUMBER") != null) {
rootProject.file("jextract-20/bin/jextract.bat").absolutePath
rootProject.file("jextract-21/bin/jextract.bat").absolutePath
} else {
if (OSUtils.IS_WINDOWS) {
"jextract.bat"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.16.0"
version = "1.16.1"

repositories {
mavenCentral()
Expand Down

0 comments on commit 2c1a134

Please sign in to comment.