Feature #1982 » 0032-CI-Update-setup-msys2-to-version-2.31.0.patch
| .github/workflows/ci.yml | ||
|---|---|---|
|
# A mapping from msys2/setup-msys2 version to msys2 version can be
|
||
|
# found at
|
||
|
# https://github.com/msys2/setup-msys2/blob/main/CHANGELOG.md
|
||
|
# 2.30.0 provides msys2 snapshot 20251213
|
||
|
uses: msys2/setup-msys2@v2.30.0
|
||
|
# 2.31.0 provides msys2 snapshot 20260322
|
||
|
uses: msys2/setup-msys2@v2.31.0
|
||
|
with:
|
||
|
msystem: UCRT64
|
||
|
install: >
|
||
| platforms/windows/installer_msys2/Makefile.meson | ||
|---|---|---|
|
ifeq ($(CI),yes)
|
||
|
ICUVER=78
|
||
|
SVTAV1ENC=libSvtAv1Enc-4.dll
|
||
|
else
|
||
|
ICUVER=78
|
||
|
CRYPTO_OSSL=libngtcp2_crypto_ossl.dll
|
||
|
SVTAV1ENC=libSvtAv1Enc-3.dll
|
||
|
endif
|
||
|
#
|
||
| ... | ... | |
|
exchndl.dll \
|
||
|
mgwhelp.dll \
|
||
|
libngtcp2-16.dll \
|
||
|
libngtcp2_crypto_ossl.dll \
|
||
|
$(CRYPTO_OSSL) \
|
||
|
libngtcp2_crypto_ossl-0.dll
|
||
|
install-env-common:
|
||
| ... | ... | |
|
libaom.dll \
|
||
|
libdav1d-7.dll \
|
||
|
librav1e.dll \
|
||
|
libSvtAv1Enc-3.dll \
|
||
|
$(SVTAV1ENC) \
|
||
|
libyuv.dll
|
||
|
SDL3_DLLS := \
|
||