mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
Use UCRT64 variant when making 64bit Windows releases
See: https://www.msys2.org/docs/environments/
This commit is contained in:
parent
e77cfb67b8
commit
858fc361ff
1 changed files with 2 additions and 1 deletions
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
@ -75,7 +75,7 @@ jobs:
|
||||||
- name: Setup MSYS2
|
- name: Setup MSYS2
|
||||||
uses: msys2/setup-msys2@v2
|
uses: msys2/setup-msys2@v2
|
||||||
with:
|
with:
|
||||||
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'mingw64' }}
|
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'ucrt64' }}
|
||||||
install: >-
|
install: >-
|
||||||
git
|
git
|
||||||
make
|
make
|
||||||
|
@ -90,6 +90,7 @@ jobs:
|
||||||
mv build/qjsc.exe build/qjsc-windows-${{matrix.arch}}.exe
|
mv build/qjsc.exe build/qjsc-windows-${{matrix.arch}}.exe
|
||||||
- name: check
|
- name: check
|
||||||
run: |
|
run: |
|
||||||
|
file build/qjs-windows-${{matrix.arch}}.exe
|
||||||
ldd build/qjs-windows-${{matrix.arch}}.exe build/qjsc-windows-${{matrix.arch}}.exe
|
ldd build/qjs-windows-${{matrix.arch}}.exe build/qjsc-windows-${{matrix.arch}}.exe
|
||||||
- name: upload
|
- name: upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
Loading…
Reference in a new issue