Skip to content

Commit 858fc36

Browse files
committed
Use UCRT64 variant when making 64bit Windows releases
See: https://www.msys2.org/docs/environments/
1 parent e77cfb6 commit 858fc36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Setup MSYS2
7676
uses: msys2/setup-msys2@v2
7777
with:
78-
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'mingw64' }}
78+
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'ucrt64' }}
7979
install: >-
8080
git
8181
make
@@ -90,6 +90,7 @@ jobs:
9090
mv build/qjsc.exe build/qjsc-windows-${{matrix.arch}}.exe
9191
- name: check
9292
run: |
93+
file build/qjs-windows-${{matrix.arch}}.exe
9394
ldd build/qjs-windows-${{matrix.arch}}.exe build/qjsc-windows-${{matrix.arch}}.exe
9495
- name: upload
9596
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)