Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
* Added VanillaIceCream (API 35)
* arm64
  • Loading branch information
alvr committed Aug 4, 2024
1 parent e91f271 commit 85ec615
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,14 @@ jobs:
password: ${{ secrets.QUAY_PASS }}

- name: Build Android Base JDK${{ matrix.jdk }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./docker
file: ./docker/base.Dockerfile
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
build-args: |
JDK_VERSION=${{ matrix.jdk }}
CMDLINE_VERSION=${{ env.CMDLINE_VERSION }}
Expand All @@ -110,7 +111,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
android-api: [28, 29, 30, 31, 32, 33, 34, VanillaIceCream]
android-api: [28, 29, 30, 31, 32, 33, 34, 35]
jdk: [8, 11, 17, 21]

steps:
Expand All @@ -130,7 +131,7 @@ jobs:
32) BUILD_TOOLS_VERSION="32.0.0" ;;
33) BUILD_TOOLS_VERSION="33.0.2" ;;
34) BUILD_TOOLS_VERSION="34.0.0" ;;
VanillaIceCream) BUILD_TOOLS_VERSION="35.0.0-rc3" ;;
35) BUILD_TOOLS_VERSION="35.0.0" ;;
esac
echo "BUILD_TOOLS_VERSION=$BUILD_TOOLS_VERSION" >> $GITHUB_ENV
Expand Down Expand Up @@ -173,13 +174,14 @@ jobs:
password: ${{ secrets.QUAY_PASS }}

- name: Build Android API ${{ matrix.android-api }} JDK${{ matrix.jdk }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./docker
file: ./docker/android.Dockerfile
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
build-args: |
JDK_VERSION=${{ matrix.jdk }}
BUILD_TOOLS=${{ env.BUILD_TOOLS_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion docker/extras
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

DEFAULT_NDK=26.1.10909125
DEFAULT_NDK=27.0.12077973
DEFAULT_CMAKE=3.22.1

install_fastlane() {
Expand Down

0 comments on commit 85ec615

Please sign in to comment.