Merge pull request #199 from n8henrie/fix-darwin-ci

fix: update cachix installer to fix darwin CI
This commit is contained in:
Ryan Mulligan 2023-09-15 09:02:43 -07:00 committed by GitHub
commit 572baca9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

View File

@ -7,10 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/install-nix-action@v22
with:
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
- run: nix build
- run: nix build .#doc
- run: nix fmt . -- --check
@ -19,10 +18,9 @@ jobs:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/install-nix-action@v22
with:
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
- run: nix build
- run: nix build .#doc
- run: nix fmt . -- --check