Skip to content

Commit

Permalink
ci(flake): build heavy stuff sequentially
Browse files Browse the repository at this point in the history
and skip running nixci.

Signed-off-by: Harald Hoyer <[email protected]>
  • Loading branch information
haraldh committed Mar 28, 2024
1 parent b421d40 commit 201b1b3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/magic-nix-cache-action@main

- name: nix build
run: nix run nixpkgs#nixci -- -- --impure
- name: nix build main
run: nix build --override-input debugBuild github:boolean-option/true -L .#main
- name: nix build cli
run: nix build --override-input debugBuild github:boolean-option/true -L .#cli
- name: nix build frontend
run: nix build --override-input debugBuild github:boolean-option/true -L .#frontend

- name: nix check overlay
run: cd test-overlay && nix build --no-write-lock-file -L .#kitsune
Expand Down

0 comments on commit 201b1b3

Please sign in to comment.