Files
nyash-aes-xts256-plain64/.github/workflows/rust.yml
T
Kirill Shakirov 52c2f3ae35 Create rust.yml
2026-03-28 06:09:17 +01:00

27 lines
532 B
YAML

name: Rust
on:
workflow_dispatch:
inputs:
build_type:
description: 'Build configuration'
required: true
default: 'release'
type: choice
options:
- debug
- release
env:
CARGO_TERM_COLOR: always
jobs:
build-m1:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
- run: cargo build --target aarch64-apple-darwin --release