Skip to content

Commit

Permalink
Debugging #162.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjp41 committed Oct 11, 2021
1 parent 4292a34 commit 99b2585
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,24 @@ jobs:
- name: Run tests debug
run: cargo test --all --features debug
- name: Run tests cache-friendly
run: cargo test --all --features cache-friendly
run: cargo test --all --features cache-friendly

crossbuild-mac-arm:
runs-on: macOS-latest
steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: aarch64-apple-darwin
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
env:
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer
MACOSX_DEPLOYMENT_TARGET: '10.9'
run: |
# set SDKROOT for C dependencies
export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
cargo +nightly build --verbose --target aarch64-apple-darwin

0 comments on commit 99b2585

Please sign in to comment.