Skip to content

Commit

Permalink
CI: Switch from MINGW64 to UCRT64. Closes: #1421
Browse files Browse the repository at this point in the history
UCRT64 is meanwhile the recommended MSYS2 environment for Windows.
Visual Studio uses it by default since 2015. tmpfile() behaves here
also as expected and does not always return NULL.

See also:
- https://www.msys2.org/docs/environments/
- https://www.msys2.org/news/#2022-10-29-changing-the-default-environment-from-mingw64-to-ucrt6
- msys2/MINGW-packages#18878
  • Loading branch information
radioactiveman committed Aug 14, 2024
1 parent 005eae0 commit e0bb70a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ runs:
- uses: msys2/setup-msys2@v2
if: startsWith(inputs.os, 'windows')
with:
msystem: MINGW64
msystem: UCRT64
update: true
install: >-
mingw-w64-x86_64-autotools
mingw-w64-x86_64-gcc
mingw-w64-x86_64-gtk2
mingw-w64-x86_64-meson
mingw-w64-x86_64-pkg-config
mingw-w64-x86_64-qt6-base
mingw-w64-x86_64-qt6-svg
mingw-w64-ucrt-x86_64-autotools
mingw-w64-ucrt-x86_64-gcc
mingw-w64-ucrt-x86_64-gtk2
mingw-w64-ucrt-x86_64-meson
mingw-w64-ucrt-x86_64-pkg-config
mingw-w64-ucrt-x86_64-qt6-base
mingw-w64-ucrt-x86_64-qt6-svg

0 comments on commit e0bb70a

Please sign in to comment.