1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 16:11:51 +03:00

imp: checks pass --show-trace flags

This commit is contained in:
David Arnold 2021-06-25 16:23:01 -05:00 committed by Parthiv Seetharaman
parent 6efb2fbccf
commit 466ea26553
2 changed files with 5 additions and 5 deletions

View File

@ -27,5 +27,5 @@ jobs:
- run: nix develop --command evalnix - run: nix develop --command evalnix
# Check /examples/* # Check /examples/*
- run: nix develop --command check-downstream - run: nix develop --command -- check-downstream --show-trace
- run: nix develop --command check-groupByConfig - run: nix develop --command -- check-groupByConfig --show-trace

View File

@ -51,9 +51,9 @@ let
digga_fixture digga_fixture
test -f flake.lock && lockfile_present=$? || true test -f flake.lock && lockfile_present=$? || true
${patchedNixUnstable}/bin/nix flake lock --update-input digga; lockfile_updated=$?; ${patchedNixUnstable}/bin/nix flake lock --update-input digga "$@"; lockfile_updated=$?;
${patchedNixUnstable}/bin/nix flake show ${patchedNixUnstable}/bin/nix flake show "$@"
${patchedNixUnstable}/bin/nix flake check ${patchedNixUnstable}/bin/nix flake check "$@"
cleanup cleanup
''; '';