Drop API 24 from CI matrix; Swift 6.3.2's Android SDK only ships 28+ #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Swift | |
| on: [push] | |
| jobs: | |
| android: | |
| name: Android | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| swift: ['6.3.2'] | |
| arch: ['aarch64', 'x86_64'] | |
| sdk: ['28', '29', '30'] | |
| runs-on: macos-15 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Build Swift Package for Android" | |
| run: | | |
| brew install skiptools/skip/skip || (brew update && brew install skiptools/skip/skip) | |
| skip android sdk install --version ${{ matrix.swift }} | |
| ANDROID_NDK_ROOT="" ANDROID_SDK_VERSION=${{ matrix.sdk }} skip android build --swift-version ${{ matrix.swift }} --arch ${{ matrix.arch }} --android-api-level ${{ matrix.sdk }} |