Feature #1248 » 0047-CI-Update-setup-msys2-to-version-2.27.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.26.0 provides msys2 snapshot 20241208
|
||
|
uses: msys2/setup-msys2@v2.26.0
|
||
|
# 2.27.0 provides msys2 snapshot 20250221
|
||
|
uses: msys2/setup-msys2@v2.27.0
|
||
|
with:
|
||
|
msystem: UCRT64
|
||
|
install: >
|
||
| platforms/windows/installer_msys2/Makefile.meson | ||
|---|---|---|
|
DLLPATH_PREFIX=/$(ARCHDIR)/bin/
|
||
|
ifeq ($(CI),yes)
|
||
|
ICUVER=75
|
||
|
RAV1E=rav1e.dll
|
||
|
ICUVER=76
|
||
|
else
|
||
|
ICUVER=76
|
||
|
RAV1E=librav1e.dll
|
||
|
endif
|
||
|
#
|
||
| ... | ... | |
|
libjxl_cms.dll \
|
||
|
libaom.dll \
|
||
|
libdav1d-7.dll \
|
||
|
$(RAV1E) \
|
||
|
librav1e.dll \
|
||
|
libSvtAv1Enc-2.dll \
|
||
|
libyuv.dll
|
||