mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
25 lines
599 B
YAML
25 lines
599 B
YAML
on:
|
|
workflow_call:
|
|
|
|
name: test cargo build on linux arm64 inside nix
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
# Do not add permissions here! Configure them at the job level!
|
|
permissions: {}
|
|
|
|
jobs:
|
|
nix-linux-arm64-cargo:
|
|
name: nix-linux-arm64
|
|
runs-on: [self-hosted, Linux, ARM64]
|
|
timeout-minutes: 150
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: test release build
|
|
run: nix develop -c cargo build --release --locked
|
|
|
|
# TODO
|
|
#- name: build tests without running
|
|
# run: cargo test --no-run --release
|