roc/.github/workflows/nix.yml

24 lines
512 B
YAML
Raw Normal View History

2022-05-30 20:34:04 +03:00
on: [pull_request]
2022-06-18 18:10:59 +03:00
name: Nix apple silicon cargo test
2022-05-30 20:34:04 +03:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUST_BACKTRACE: 1
jobs:
2022-06-18 18:10:59 +03:00
nix-apple-silicon:
name: nix-apple-silicon
2022-05-30 20:34:04 +03:00
runs-on: [self-hosted, macOS, ARM64]
timeout-minutes: 90
steps:
- uses: actions/checkout@v2
2022-06-17 20:42:21 +03:00
with:
clean: "true"
2022-06-18 18:51:16 +03:00
- name: execute tests without --release
2022-06-18 18:10:59 +03:00
run: nix develop -c cargo test --locked # no --release yet until #3166 is fixed