ci/msys2: switch to Python 3.11 to fix crashes during build

There is a long-standing bug with random crashes of Python 3.10 on CI.

See:
https://github.com/python/cpython/issues/105400
https://github.com/msys2/MINGW-packages/issues/11864
https://github.com/msys2/MINGW-packages/issues/17415
This commit is contained in:
Kacper Michajłow 2023-06-25 18:26:06 +02:00 committed by sfan5
parent 9921785340
commit eb4da3400a
3 changed files with 4 additions and 1 deletions

View File

@ -271,7 +271,7 @@ jobs:
meson:p
ninja:p
pkgconf:p
python:p
python3.11:p
rst2pdf:p
rubberband:p
shaderc:p

View File

@ -2,6 +2,7 @@
if [ "$1" = "meson" ]; then
meson setup build \
--native-file=ci/msys2-meson.txt \
-D cdda=enabled \
-D d3d-hwaccel=enabled \
-D d3d11=enabled \

2
ci/msys2-meson.txt Normal file
View File

@ -0,0 +1,2 @@
[binaries]
python3 = 'python3.11'