Feature #1818 » 0049-CI-Update-setup-msys2-to-version-2.30.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.29.0 provides msys2 snapshot 20250830
|
||
|
uses: msys2/setup-msys2@v2.29.0
|
||
|
# 2.30.0 provides msys2 snapshot 20251213
|
||
|
uses: msys2/setup-msys2@v2.30.0
|
||
|
with:
|
||
|
msystem: UCRT64
|
||
|
install: >
|
||
| platforms/windows/installer_msys2/Makefile.meson | ||
|---|---|---|
|
DLLPATH_PREFIX=/$(ARCHDIR)/bin/
|
||
|
ifeq ($(CI),yes)
|
||
|
ICUVER=77
|
||
|
ICUVER=78
|
||
|
else
|
||
|
ICUVER=77
|
||
|
endif
|
||