Refactor to start extracting things out to insanity-core #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS Apple Silicon | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rustup Toolchain | |
run: rustup toolchain install stable-aarch64-apple-darwin | |
- name: Rustup Target | |
run: rustup target add aarch64-apple-darwin | |
- name: Build | |
run: cargo +stable-aarch64-apple-darwin build --release --verbose --target aarch64-apple-darwin | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: insanity | |
path: target/aarch64-apple-darwin/release/insanity |