Skip to content

Commit

Permalink
fix(github-actions)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvtfl committed Jun 21, 2024
1 parent 2d454d5 commit 194e1e9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/nix-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: "experimental-features = nix-command flakes ca-derivations"
- uses: cachix/cachix-action@v15
with:
name: mur
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build "${{ matrix.attr }}"
run: nix build -L ".#${{ matrix.attr }}" --extra-experimental-features ca-derivations
run: nix build -L ".#${{ matrix.attr }}"

nix-build-stable:
needs: nix-matrix
Expand All @@ -47,9 +49,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: "experimental-features = nix-command flakes ca-derivations"
- uses: cachix/cachix-action@v15
with:
name: mur
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build "${{ matrix.attr }}"
run: nix build --inputs-from . --override-input nixpkgs stable -L ".#${{ matrix.attr }}" --extra-experimental-features ca-derivations
run: nix build --inputs-from . --override-input nixpkgs stable -L ".#${{ matrix.attr }}"

0 comments on commit 194e1e9

Please sign in to comment.