From 8ec11893d9b66e7ab937c68166f6b2e30f2928b1 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 3 Apr 2025 15:23:36 +0200 Subject: [PATCH] ci/fluster: use http proxy when checking for the vector files It's done properly when downloading it, but not when checking for it. Part-of: --- .gitlab-ci/fluster/fluster-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/fluster/fluster-runner.sh b/.gitlab-ci/fluster/fluster-runner.sh index 022dc7caf31..91887fbbfc6 100755 --- a/.gitlab-ci/fluster/fluster-runner.sh +++ b/.gitlab-ci/fluster/fluster-runner.sh @@ -16,7 +16,7 @@ fi # Check which fluster vectors to get FLUSTER_VECTORS_HOST_PATH="${STORAGE_MAINLINE_HOST_PATH}/fluster/${FLUSTER_VECTORS_VERSION}" if [ "$CI_PROJECT_PATH" != "$FDO_UPSTREAM_REPO" ]; then - if ! curl -s -L --retry 4 -f --retry-delay 60 "https://${FLUSTER_VECTORS_HOST_PATH}/done"; then + if ! curl -s -L --retry 4 -f --retry-delay 60 "${FDO_HTTP_CACHE_URI:-}https://${FLUSTER_VECTORS_HOST_PATH}/done"; then echo "Using Fluster vectors from the fork, cached from mainline is unavailable." FLUSTER_VECTORS_HOST_PATH="${STORAGE_FORK_HOST_PATH}/fluster/${FLUSTER_VECTORS_VERSION}" else