aboutsummaryrefslogtreecommitdiff
path: root/tests/push-to-store.sh
diff options
context:
space:
mode:
authorYorick van Pelt <yorick@yorickvanpelt.nl>2023-02-24 16:33:28 +0100
committerYorick van Pelt <yorick@yorickvanpelt.nl>2023-05-08 12:58:59 +0200
commit5e332aa5030d2d6780db18c4cb042e3a6f178923 (patch)
tree4fa5738f8388946cfaf2c725e93ab5937eab398d /tests/push-to-store.sh
parent12685ef45fa81e5a5ea550bf469d7722fe9c8709 (diff)
tests: copying only the out paths is not enough information for CA
Diffstat (limited to 'tests/push-to-store.sh')
-rwxr-xr-xtests/push-to-store.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/push-to-store.sh b/tests/push-to-store.sh
index 9e4e475e0..b5f099fe2 100755
--- a/tests/push-to-store.sh
+++ b/tests/push-to-store.sh
@@ -9,6 +9,7 @@ set -e
echo Pushing "$OUT_PATHS" to "$REMOTE_STORE"
if [ -n "$BUILD_HOOK_ONLY_OUT_PATHS" ]; then
printf "%s" "$OUT_PATHS" | xargs nix copy --to "$REMOTE_STORE" --no-require-sigs
+ printf "%s" "$DRV_PATH" | xargs nix copy --to "$REMOTE_STORE" --no-require-sigs --derivation
else
printf "%s" "$DRV_PATH"^'*' | xargs nix copy --to "$REMOTE_STORE" --no-require-sigs
fi