Skip to content

Commit

Permalink
Merge pull request ppy#6057 from bdach/i-love-github-and-android
Browse files Browse the repository at this point in the history
Attempt to fix android compile failures due to invalid java version again
  • Loading branch information
peppy authored Nov 21, 2023
2 parents 66b9058 + 9628e9f commit 4a0efed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 1 addition & 7 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
"commands": [
"CodeFileSanity"
]
},
"java.openjdk": {
"version": "11.0.1-beta001",
"commands": [
"Java.OpenJDK"
]
}
}
}
}
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup JDK 11
uses: actions/setup-java@v3
with:
distribution: microsoft
java-version: 11

- name: Install .NET 6.0.x
uses: actions/setup-dotnet@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/deploy-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ jobs:
with:
dotnet-version: "6.0.x"

- name: Setup JDK 11
uses: actions/setup-java@v3
with:
distribution: microsoft
java-version: 11

- name: Restore .NET workloads
run: dotnet workload install android

Expand Down

0 comments on commit 4a0efed

Please sign in to comment.