Skip to content

Commit

Permalink
Don't use cross-rs on darwin targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Mar 7, 2024
1 parent 56f6c0b commit 7a0c533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- env:
TARGET: ${{ matrix.target }}
CHANNEL: ${{ matrix.channel }}
CROSS: ${{ matrix.target != 'x86_64-unknown-linux-gnu' && '1' || '0' }}
CROSS: ${{ matrix.target != 'x86_64-unknown-linux-gnu' && matrix.target != 'x86_64-apple-darwin' && '1' || '0' }}
NO_STD: ${{ matrix.target == 'thumbv6m-none-eabi' && '1' || '0' }}
run: sh ci/run.sh
strategy:
Expand Down

0 comments on commit 7a0c533

Please sign in to comment.