Skip to content

Use GitHub Actions upload-artifact v4 #478

Use GitHub Actions upload-artifact v4

Use GitHub Actions upload-artifact v4 #478

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
# For quickly detecting important differences in runner configurations
schedule:
- cron: '0 5 * * MON'
name: macOS aarch64
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: aarch64-apple-darwin
override: true
- name: Set SDKROOT
run: echo "SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path)" >> $GITHUB_ENV
- name: Set MACOSX_DEPLOYMENT_TARGET
run: echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version)" >> $GITHUB_ENV
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --target aarch64-apple-darwin