GHA/curl-for-win: use DOCKER_IMAGE_STABLE

Replacing the hard-wired stable image. After this patch, it
will automatically follow upstream updates.

Follow-up to 6870bc1b35
Follow-up to 5a25df253d

Closes #18709
This commit is contained in:
Viktor Szakats 2025-09-24 17:44:47 +02:00
parent acd0aa2c9d
commit 22b9f77e38
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -58,17 +58,17 @@ jobs:
mv curl-for-win/* .
export CW_CONFIG='-main-werror-unitybatch-linux-a64-x64-gcc'
export CW_REVISION="${GITHUB_SHA}"
DOCKER_IMAGE='debian:bookworm-slim'
. ./_versions.sh
export CW_CCSUFFIX='-15'
export CW_GCCSUFFIX='-12'
sudo podman image trust set --type reject default
sudo podman image trust set --type accept docker.io/library
time podman pull "${DOCKER_IMAGE}"
time podman pull "${DOCKER_IMAGE_STABLE}"
podman images --digests
time podman run --volume "$(pwd):$(pwd)" --workdir "$(pwd)" \
--env-file <(env | grep -a -E \
'^(CW_|GITHUB_)') \
"${DOCKER_IMAGE}" \
"${DOCKER_IMAGE_STABLE}" \
sh -c ./_ci-linux-debian.sh
linux-musl-llvm: