fix: dry run for builds as i use garnix for cache
This commit is contained in:
parent
07ec890c0c
commit
d541aff6b3
1 changed files with 2 additions and 4 deletions
6
.github/workflows/diff-pr.yaml
vendored
6
.github/workflows/diff-pr.yaml
vendored
|
@ -57,12 +57,12 @@ jobs:
|
|||
run: nix-collect-garbage
|
||||
|
||||
- name: Fetch old system profile
|
||||
run: nix build github:truxnell/nix-config#top.${{ matrix.target }} -v --log-format raw --profile ./profile
|
||||
run: nix build github:truxnell/nix-config#top.${{ matrix.target }} -v --dry-run --log-format raw --profile ./profile
|
||||
|
||||
- name: Add new system to profile
|
||||
run: |
|
||||
set -o pipefail
|
||||
nix build .#top.${{ matrix.target }} --profile ./profile --show-trace --fallback -v --log-format raw > >(tee stdout.log) 2> >(tee /tmp/nix-build-err.log >&2)
|
||||
nix build .#top.${{ matrix.target }} --dry-run --profile ./profile --show-trace --fallback -v --log-format raw > >(tee stdout.log) 2> >(tee /tmp/nix-build-err.log >&2)
|
||||
|
||||
- name: Output build failure
|
||||
if: failure()
|
||||
|
@ -107,10 +107,8 @@ jobs:
|
|||
message: |
|
||||
### Report for `${{ matrix.target }}`
|
||||
|
||||
<details>
|
||||
<summary> Version changes </summary> <br>
|
||||
<pre> ${{ steps.diff.outputs.diff }} </pre>
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary> Security vulnerability report </summary> <br>
|
||||
|
|
Reference in a new issue