From e025275d35f318e253d04ef9cabfc1d1d5f748c0 Mon Sep 17 00:00:00 2001 From: Tiziano Bettio Date: Sun, 12 Nov 2023 21:31:49 +0100 Subject: [PATCH] Fix android CI --- .github/workflows/android-opengl.yml | 12 +++++++----- .github/workflows/android-vulkan.yml | 12 +++++++----- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/android-opengl.yml b/.github/workflows/android-opengl.yml index 1453c64..01cd5ec 100644 --- a/.github/workflows/android-opengl.yml +++ b/.github/workflows/android-opengl.yml @@ -15,9 +15,11 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Get krink Submodules - run: git submodule update --init - - name: Get Kinc DLC - run: ./Kinc/get_dlc + - uses: actions/setup-java@v3 + with: + distribution: 'oracle' + java-version: '17' + - name: Get krink DLC + run: ./get_dlc - name: Compile - run: Kinc/make android --kinc Kinc --from Tests/Empty --noshaders --compile + run: Kinc/make android --kinc Kinc --from Tests/Empty --compile diff --git a/.github/workflows/android-vulkan.yml b/.github/workflows/android-vulkan.yml index 1051d36..8e74b4e 100644 --- a/.github/workflows/android-vulkan.yml +++ b/.github/workflows/android-vulkan.yml @@ -15,9 +15,11 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Get krink Submodules - run: git submodule update --init - - name: Get Kinc DLC - run: ./Kinc/get_dlc + - uses: actions/setup-java@v3 + with: + distribution: 'oracle' + java-version: '17' + - name: Get krink DLC + run: ./get_dlc - name: Compile - run: Kinc/make android -g vulkan --kinc Kinc --from Tests/Empty --noshaders --compile + run: Kinc/make android -g vulkan --kinc Kinc --from Tests/Empty --compile