feat(apple): added visionOS support #173
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: coreaudio-sys | |
on: [push, pull_request] | |
jobs: | |
# Run cargo test with default, no and all features. | |
macos-test: | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
# toolchain: [stable, nightly] | |
toolchain: [nightly] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/[email protected] | |
with: | |
version: "15.0" | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: cargo test | |
run: cargo test --verbose | |
- name: cargo test - no features | |
run: cargo test --no-default-features --verbose | |
- name: cargo test - all features | |
run: cargo test --all-features --verbose | |
ios-check: | |
runs-on: macOS-14 | |
strategy: | |
matrix: | |
# toolchain: [stable, nightly] | |
toolchain: [nightly] | |
target: [aarch64-apple-ios, x86_64-apple-ios, aarch64-apple-ios-sim] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
targets: ${{ matrix.target }} | |
- name: Install LLVM and Clang | |
uses: KyleMayes/[email protected] | |
with: | |
version: "15.0" | |
- name: add ios targets | |
run: rustup target add ${{matrix.target}} | |
- name: Build for iOS target ${{matrix.target}} | |
run: cargo build --verbose --target=${{matrix.target}} | |
apple-tier-3-check: # TBD: watchOS, tvOS | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
target: [aarch64-apple-visionos, aarch64-apple-visionos-sim] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
profile: minimal | |
toolchain: nightly | |
components: rust-src | |
- name: Install Xcode Command Line Tools | |
run: sudo xcode-select --switch /Applications/Xcode_15.4.app/Contents/Developer | |
# run: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md | |
- name: Show Xcode SDKs | |
run: xcodebuild -showsdks | |
- name: Find AudioUnit.h | |
run: find /Applications/Xcode_15.4.app -name AudioUnit.h | |
- name: Build for visionOS target ${{matrix.target}} | |
run: cargo build --verbose --target=${{matrix.target}} | |
# run: cargo +nightly build -Z build-std=std,panic_abort --verbose --target=${{matrix.target}} | |
# Build the docs with all features to make sure docs.rs will work. | |
macos-docs: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/[email protected] | |
with: | |
version: "15.0" | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
# toolchain: stable | |
toolchain: nightly | |
- name: cargo doc - all features | |
run: cargo doc --all-features --verbose | |
# Publish a new version when pushing to master. | |
# Will succeed if the version has been updated, otherwise silently fails. | |
cargo-publish: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
env: | |
CRATESIO_TOKEN: ${{ secrets.CRATESIO_TOKEN }} | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/[email protected] | |
with: | |
version: "15.0" | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- name: cargo publish | |
continue-on-error: true | |
run: cargo publish --token $CRATESIO_TOKEN |