Android CI #506
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| macos: | |
| name: macOS (Xcode ${{ matrix.xcode }}) | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '16.4' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Print Swift version | |
| run: swift --version | |
| - name: Run tests (platforms) | |
| run: make test-platforms | |
| linux: | |
| strategy: | |
| matrix: | |
| swift: | |
| - '6.1' | |
| name: Ubuntu (Swift ${{ matrix.swift }}) | |
| runs-on: ubuntu-latest | |
| container: swift:${{ matrix.swift }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: swift test --parallel | |
| wasm: | |
| name: Wasm | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bytecodealliance/actions/wasmtime/setup@v1 | |
| - name: Install Swift and Swift SDK for WebAssembly | |
| run: | | |
| PREFIX=/opt/swift | |
| set -ex | |
| curl -f -o /tmp/swift.tar.gz "https://download.swift.org/swift-6.0.3-release/ubuntu2204/swift-6.0.3-RELEASE/swift-6.0.3-RELEASE-ubuntu22.04.tar.gz" | |
| sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1 | |
| $PREFIX/usr/bin/swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.3-RELEASE/swift-wasm-6.0.3-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 31d3585b06dd92de390bacc18527801480163188cd7473f492956b5e213a8618 | |
| echo "$PREFIX/usr/bin" >> $GITHUB_PATH | |
| - name: Build | |
| run: swift build --swift-sdk wasm32-unknown-wasi -Xlinker -z -Xlinker stack-size=$((1024 * 1024)) | |
| android: | |
| strategy: | |
| matrix: | |
| swift: | |
| - "6.0.2" | |
| name: Android | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Test Swift Package on Android" | |
| uses: skiptools/swift-android-action@v2 |