forked from mirrors/jj
github: add nix-on-macOS to the CI matrix
The aarch64-darwin macOS runners are actually quite speedy, often the fastest
builders anyway. With the recent improvements to the Nix CI speed in 3f7b5a75e
,
this shouldn't be a bottleneck, and will catch build regressions.
This commit is contained in:
parent
fe3ffda7ef
commit
e8f01ce19a
1 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: Nix on Linux
|
name: nix
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -10,9 +10,14 @@ permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
nix:
|
nix:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
name: nix-build
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-14]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 15 # NOTE (aseipp): keep in-sync with the build.yml timeout limit
|
timeout-minutes: 15 # NOTE (aseipp): keep in-sync with the build.yml timeout limit
|
||||||
|
|
||||||
|
name: flake check
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
||||||
with:
|
with:
|
Loading…
Reference in a new issue