Skip to content

f

f #21

Workflow file for this run

name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target: ['aarch64-apple-darwin', 'x86_64-apple-darwin']
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
platform: x64
- name: Build target
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target ${{ matrix.target }} --manifest-path ./generator/Cargo.toml