CI for Apple Silicon

This commit is contained in:
Jeong YunWon
2021-09-20 01:50:07 +09:00
parent fa55fd9a55
commit 9240f499ef

View File

@@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-11, ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
@@ -49,6 +49,18 @@ jobs:
command: check
args: ${{ env.CARGO_ARGS }} --no-default-features
- name: prepare AppleSilicon build
uses: actions-rs/toolchain@v1
with:
target: aarch64-apple-darwin
if: runner.os == 'macOS'
- name: Check compilation for Apple Silicon
uses: actions-rs/cargo@v1
with:
command: check
args: --target aarch64-apple-darwin
if: runner.os == 'macOS'
exotic_targets:
name: Ensure compilation on exotic targets
runs-on: ubuntu-latest