ci: Install OpenSSL 3.5.2 specifically to work around broken 3.5.1 version

while 3.5.2 is still under moderation.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1759>
This commit is contained in:
Sebastian Dröge 2025-08-08 14:24:52 +03:00
parent cc7bc0f8f8
commit 9968b8a3af

View file

@ -10,7 +10,9 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
ARG DEFAULT_BRANCH="invalid"
ARG RUST_VERSION="invalid"
RUN choco install -y pkgconfiglite nasm llvm openssl
RUN choco install -y pkgconfiglite nasm llvm
# Until it is out of moderation
RUN choco install -y openssl --version=3.5.2
# https://stackoverflow.com/a/50716450
RUN setx PATH '%PATH%;C:\Program Files\NASM;C:\gst-install\bin'