Skip to content

Commit

Permalink
ci: disable visionos build and fix cross installation (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Nov 29, 2024
1 parent e694075 commit e1943e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- run: cargo test --no-run --target=aarch64-apple-watchos -Zbuild-std --features=std
# visionOS requires Xcode 15.2+, GitHub Actions defaults to an older version.
- run: sudo xcode-select -switch /Applications/Xcode_15.2.app
- run: cargo test --no-run --target=aarch64-apple-visionos -Zbuild-std --features=std
# std is broken on visionOS right now
#- run: cargo test --no-run --target=aarch64-apple-visionos -Zbuild-std --features=std

cross:
name: Cross
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nopanic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ jobs:
- uses: Swatinem/rust-cache@v2
# TODO: use pre-compiled cross after a new (post-0.2.5) release
- name: Install cross
env:
# Allow compiler warnings during cross installation
RUSTFLAGS:
run: cargo install cross --force --git https://github.com/cross-rs/cross

- name: Build (rndr.rs)
Expand Down

0 comments on commit e1943e4

Please sign in to comment.