From 8df20f839293dddd0b71a873e453baaaef0e93e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Fri, 20 Jan 2023 16:43:29 +0100 Subject: [PATCH] Test nar selection against the attic server --- .github/workflows/build-one.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-one.yml b/.github/workflows/build-one.yml index d2d5c766..7b65a9b3 100644 --- a/.github/workflows/build-one.yml +++ b/.github/workflows/build-one.yml @@ -53,7 +53,7 @@ jobs: DRV_PATH=$(nix-instantiate -E '(import ./.).${{ inputs.job }}') OUT_PATH=$(nix show-derivation $DRV_PATH | jq -r ".\"$DRV_PATH\".outputs.out.path") NARINFO=$(echo $OUT_PATH | sed 's|/| |g' | sed 's|-| |g' | awk '{print $3}') - if curl --output /dev/null --silent --fail "https://cache.chir.rs/$NARINFO.narinfo"; then + if curl --output /dev/null --silent --fail "https://attic.chir.rs/chir-rs/$NARINFO.narinfo"; then echo "${{ inputs.job }} already built. Skipping" else nix-store -r $DRV_PATH