Skip to content

Commit

Permalink
apple-tier-3-check
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenehp committed Jun 6, 2024
1 parent c0ad6b6 commit bd715a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/coreaudio-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
toolchain: [stable, nightly]
# toolchain: [stable, nightly]
toolchain: [nightly]
steps:
- uses: actions/checkout@v4
- name: Install LLVM and Clang
Expand All @@ -27,7 +28,8 @@ jobs:
runs-on: macOS-14
strategy:
matrix:
toolchain: [stable, nightly]
# toolchain: [stable, nightly]
toolchain: [nightly]
target: [aarch64-apple-ios, x86_64-apple-ios, aarch64-apple-ios-sim]
steps:
- uses: actions/checkout@v4
Expand All @@ -47,7 +49,7 @@ jobs:
- name: Build for iOS target ${{matrix.target}}
run: cargo build --verbose --target=${{matrix.target}}

visionos-check:
apple-tier-3-check: # TBD: watchOS, tvOS
runs-on: macOS-latest
strategy:
matrix:
Expand All @@ -73,7 +75,8 @@ jobs:
run: find /Applications/Xcode_15.4.app -name AudioUnit.h

- name: Build for visionOS target ${{matrix.target}}
run: cargo +nightly build -Z build-std=std,panic_abort --verbose --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:
Expand All @@ -86,7 +89,8 @@ jobs:
version: "15.0"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
# toolchain: stable
toolchain: nightly
- name: cargo doc - all features
run: cargo doc --all-features --verbose

Expand Down
1 change: 1 addition & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
channel = "nightly"
# channel = "stable"
# components = ["rust-std", "rust-src", "rustc-dev", "llvm-tools-preview"]
profile = "minimal"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]
targets = ["aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-apple-vision", "aarch64-apple-vision-sim"]

0 comments on commit bd715a8

Please sign in to comment.