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