]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/curl-for-win: use `DOCKER_IMAGE_STABLE`
authorViktor Szakats <commit@vsz.me>
Wed, 24 Sep 2025 15:44:47 +0000 (17:44 +0200)
committerViktor Szakats <commit@vsz.me>
Wed, 24 Sep 2025 17:00:03 +0000 (19:00 +0200)
Replacing the hard-wired stable image. After this patch, it
will automatically follow upstream updates.

Follow-up to https://github.com/curl/curl-for-win/commit/6870bc1b35baff03168af1d0506ec8610851a819
Follow-up to https://github.com/curl/curl-for-win/commit/5a25df253da4f68de52b14a2e612df5fc60b8aa6

Closes #18709

.github/workflows/curl-for-win.yml

index 0090c7d6e22e59d5ca8aab6837ac32beb83183a5..e29a2a66e85de0756f78a44f47aa6874af1901b1 100644 (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: