mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
windows/Dockerfile: Pin python to 3.11.2
Version 3.11.3+ and 3.12 change the way subprocess with shell=True
works to no longer use the PATH but instead rely on %ComSpec% or
%SystemRoot% which are currently not present in the cerbero env.
51b079a2d6
Pin to 3.11.2 until we fix cerbero.
https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/427
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4468>
This commit is contained in:
parent
dd78aa053b
commit
8e9db20a3b
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ RUN choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
|
|||
RUN choco install -y git --params '/NoAutoCrlf /NoCredentialManager /NoShellHereIntegration /NoGuiHereIntegration /NoShellIntegration'
|
||||
RUN choco install -y git-lfs
|
||||
RUN choco install -y 7zip
|
||||
RUN choco install -y python3 --installargs 'AssociateFiles=1 PrependPath=1 Include_pip=1 Include_dev=1'
|
||||
# See https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/427
|
||||
RUN choco install -y python3 --version=3.11.2 --installargs 'AssociateFiles=1 PrependPath=1 Include_pip=1 Include_dev=1'
|
||||
RUN choco install -y msys2 --params '/NoPath /NoUpdate /InstallDir:C:\\msys64'
|
||||
RUN choco install -y wixtoolset
|
||||
|
||||
|
|
Loading…
Reference in a new issue