ci: bump Windows OpenSSL to 3.5.8 (3.5.7 rotated out, 404) - #205
Merged
Conversation
slproweb.com only hosts the latest patch release, and it has rotated from 3.5.7 to 3.5.8: Win32/Win64/Win64ARM OpenSSL-3_5_7.exe now return 404. The download step fetches an error page, and the install step then fails with 'The system cannot execute the specified program', breaking the build-postgres and build-postgres-arm jobs (and skipping the Windows build-and-test jobs) on every branch. Bump OPENSSL_VERSION to 3_5_8, which is available for all three targets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
build-postgresandbuild-postgres-armjobs are failing on every branch at the "Install Win32/Win64 OpenSSL" step with:slproweb.com only hosts the latest OpenSSL patch release and has rotated from 3.5.7 to 3.5.8, so
Win32OpenSSL-3_5_7.exe,Win64OpenSSL-3_5_7.exeandWin64ARMOpenSSL-3_5_7.exenow return 404. The download step saves the 404 error page as*.exe, and the subsequent install step can't execute it. Whenbuild-postgresfails, the Windowsbuild-and-testjobs are skipped.Fix
Bump
OPENSSL_VERSIONfrom3_5_7to3_5_8. Verified all three installers are currently available:Win32OpenSSL-3_5_8.exe-> 200Win64OpenSSL-3_5_8.exe-> 200Win64ARMOpenSSL-3_5_8.exe-> 200The single env var drives every OpenSSL URL and cache key (x86, x64, ARM64), so this one-line change covers all jobs.
Note
This is the third slproweb patch-rotation break recently (3.5.5 -> 3.5.6 -> 3.5.7 -> 3.5.8). A more durable fix would avoid pinning to slproweb's exact-patch URLs (e.g. a fallback list or a stable OpenSSL source). Worth a follow-up; this PR just unblocks CI now.