From 3b1bbc1aaf194c6344de24949bf09108de997e06 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Tue, 23 Apr 2024 19:45:03 +0530 Subject: [PATCH] android: add CI build for aarch64 (#32137) I haven't tested the APK since I don't have a device with 64-bit ARM. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because the PR only modifies CI workflow. Signed-off-by: Mukilan Thiyagarajan --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 54517e7d29a..cc83723d910 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - arch: ['armv7-linux-androideabi', 'i686-linux-android', 'x86_64-linux-android'] + arch: ['aarch64-linux-android', 'armv7-linux-androideabi', 'i686-linux-android', 'x86_64-linux-android'] steps: - uses: actions/checkout@v4 if: github.event_name != 'issue_comment' && github.event_name != 'pull_request_target'