Skip to content

Commit

Permalink
CI: several changes to Android build env ...
Browse files Browse the repository at this point in the history
* Switch OpenJDK runtime to Eclipse Temurin (AdoptOpenJDK has rebranded
  to Eclipse Temurin)
* Fetch submodules using full clones instead of shallow clones
  • Loading branch information
liushuyu committed Jun 12, 2023
1 parent 7a7d57c commit 6f2a14b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,12 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: set up JDK 17
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
distribution: 'temurin'
- name: Set up cache
uses: actions/cache@v3
with:
Expand All @@ -155,7 +156,6 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y ccache apksigner glslang-dev glslang-tools
git -C ./externals/vcpkg/ fetch --all --unshallow
- name: Build
run: ./.ci/scripts/android/build.sh
- name: Copy and sign artifacts
Expand Down

0 comments on commit 6f2a14b

Please sign in to comment.