Skip to content

Commit 641cb60

Browse files
committed
Android SDK build
1 parent 74f81e5 commit 641cb60

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,19 @@ jobs:
3535
run: ./build
3636

3737
android-build:
38-
name: Build Android SDK
38+
name: Build Android ${{ matrix.arch }}
3939
runs-on: ubuntu-24.04
40+
timeout-minutes: 120
41+
strategy:
42+
fail-fast: false
43+
matrix:
44+
arch: [armv7,aarch64,x86_64,x86]
4045
steps:
4146
- name: Checkout repository
4247
uses: actions/checkout@v4
4348
- name: Build Android SDK
4449
working-directory: swift-ci/sdks/android
4550
run: |
4651
sudo apt install ninja-build
47-
./build
52+
TARGET_ARCHS=${{ matrix.arch }} ./build
4853

0 commit comments

Comments
 (0)