Skip to content

Commit 6053152

Browse files
committed
Use NDK27 on macOS-13 runners
1 parent 2dc180f commit 6053152

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test-action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os: ['ubuntu-24.04', 'ubuntu-22.04', 'macos-13', 'macos-15']
1414
#swift-version: ['6.0', '6.1']
15-
swift-version: ['6.0', '6.1', 'nightly-6.2']
15+
swift-version: ['6.0', '6.1', '6.1.1', 'nightly-6.2']
1616
steps:
1717
- name: Checkout Action
1818
uses: actions/checkout@v4
@@ -62,7 +62,10 @@ jobs:
6262
uses: actions/checkout@v4
6363
with:
6464
path: swift-android-action
65-
65+
- name: Setup NDK
66+
if: ${{ matrix.os == 'macos-13' }} # macOS-13 defaults to NDK 16, NDK 17+ needed
67+
run: |
68+
echo "ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk/27.2.12479018" >> $GITHUB_ENV
6669
- name: Setup Toolchain
6770
id: setup-toolchain
6871
uses: ./swift-android-action/

0 commit comments

Comments
 (0)