Android CI #487
Workflow file for this run
This file contains 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-14: | |
name: macOS 14 (Xcode ${{ matrix.xcode }}) | |
runs-on: macOS-14 | |
strategy: | |
matrix: | |
xcode: | |
- '15.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: | |
name: Ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
swift: | |
- '5.10' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: make test-linux SWIFT_VERSION=${{ matrix.swift }} | |
wasm: | |
name: SwiftWasm | |
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.2-release/ubuntu2204/swift-6.0.2-RELEASE/swift-6.0.2-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.2-RELEASE/swift-wasm-6.0.2-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 6ffedb055cb9956395d9f435d03d53ebe9f6a8d45106b979d1b7f53358e1dcb4 | |
echo "$PREFIX/usr/bin" >> $GITHUB_PATH | |
- name: Build | |
run: swift build --swift-sdk wasm32-unknown-wasi -Xlinker -z -Xlinker stack-size=$((1024 * 1024)) | |
- name: Run tests | |
run: wasmtime .build/debug/swift-custom-dumpPackageTests.wasm | |
windows: | |
name: Windows | |
strategy: | |
matrix: | |
os: [windows-latest] | |
config: ['debug', 'release'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: compnerd/gha-setup-swift@main | |
with: | |
branch: swift-5.10-release | |
tag: 5.10-RELEASE | |
- uses: actions/checkout@v4 | |
- name: Build All Configurations | |
run: swift build -c ${{ matrix.config }} | |
- name: Run tests (debug only) | |
run: swift test | |
android: | |
name: Android | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Test Swift Package on Android" | |
uses: skiptools/swift-android-action@v2 |