Skip to content

Commit

Permalink
Try windows with toolchain java -11
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 2, 2024
1 parent 053309f commit 695cce5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
Expand Down
2 changes: 1 addition & 1 deletion pprint-kotlin-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {

kotlin {
jvm {
jvmToolchain(8)
jvmToolchain(11)
}

linuxX64()
Expand Down
2 changes: 1 addition & 1 deletion pprint-kotlin-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {

kotlin {
jvm {
jvmToolchain(8)
jvmToolchain(11)
}

linuxX64()
Expand Down
2 changes: 1 addition & 1 deletion pprint-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tasks.named<Test>("test") {
}

kotlin {
jvmToolchain(8)
jvmToolchain(11)
}

dependencies {
Expand Down

0 comments on commit 695cce5

Please sign in to comment.