Feature #204 ยป 0026-CI-Update-setup-msys2-to-version-2.22.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.21.1 provides msys2 snapshot 20231026
|
||
|
uses: msys2/setup-msys2@v2.21.1
|
||
|
# 2.22.0 provides msys2 snapshot 20240113
|
||
|
uses: msys2/setup-msys2@v2.22.0
|
||
|
with:
|
||
|
msystem: UCRT64
|
||
|
install: >
|
||
| platforms/windows/installer_msys2/Makefile.autotools | ||
|---|---|---|
|
DLLPATH_PREFIX=/$(ARCHDIR)/bin/
|
||
|
ifeq ($(CI),yes)
|
||
|
ICUVER=73
|
||
|
ICUVER=74
|
||
|
else
|
||
|
ICUVER=74
|
||
|
endif
|
||
| platforms/windows/installer_msys2/Makefile.meson | ||
|---|---|---|
|
DLLPATH_PREFIX=/$(ARCHDIR)/bin/
|
||
|
ifeq ($(CI),yes)
|
||
|
ICUVER=73
|
||
|
ICUVER=74
|
||
|
else
|
||
|
ICUVER=74
|
||
|
endif
|
||