Skip to content

Commit

Permalink
github: add nix-on-macOS to the CI matrix
Browse files Browse the repository at this point in the history
The aarch64-darwin macOS runners are actually quite speedy, often the fastest
builders anyway. With the recent improvements to the Nix CI speed in 3f7b5a7,
this shouldn't be a bottleneck, and will catch build regressions.
  • Loading branch information
thoughtpolice authored and martinvonz committed Feb 28, 2024
1 parent fe3ffda commit e8f01ce
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nix on Linux
name: nix

on:
push:
Expand All @@ -10,9 +10,14 @@ permissions: read-all

jobs:
nix:
runs-on: ubuntu-latest
name: nix-build
strategy:
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

name: flake check
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
Expand Down

0 comments on commit e8f01ce

Please sign in to comment.