Switched shell to mingw64.
This commit is contained in:
parent
9805a0ee8a
commit
90a8a6511d
3 changed files with 3 additions and 4 deletions
2
.github/workflows/windows-msys.yml
vendored
2
.github/workflows/windows-msys.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: msys2 {0}
|
shell: mingw64 {0}
|
||||||
strategy:
|
strategy:
|
||||||
max-parallel: 10
|
max-parallel: 10
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
@ -32,4 +32,3 @@ license = COPYING
|
||||||
requiresAdminRights = true
|
requiresAdminRights = true
|
||||||
multiUserInstall = false
|
multiUserInstall = false
|
||||||
script = ports/deploy/installscript.nsi
|
script = ports/deploy/installscript.nsi
|
||||||
verbose = true
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ echo
|
||||||
|
|
||||||
export PATH=/c/msys64/mingw64/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
export PATH=/c/msys64/mingw64/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
||||||
buildDir=build-${COMPILER}-x64
|
buildDir=build-${COMPILER}-x64
|
||||||
mkdir ${buildDir}
|
mkdir -p ${buildDir}
|
||||||
cmake \
|
cmake \
|
||||||
-LA \
|
-LA \
|
||||||
-S . \
|
-S . \
|
||||||
|
@ -59,7 +59,7 @@ echo
|
||||||
|
|
||||||
export PATH=/c/msys64/mingw32/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
export PATH=/c/msys64/mingw32/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
||||||
buildDir=build-${COMPILER}-x86
|
buildDir=build-${COMPILER}-x86
|
||||||
mkdir ${buildDir}
|
mkdir -p ${buildDir}
|
||||||
cmake \
|
cmake \
|
||||||
-LA \
|
-LA \
|
||||||
-S . \
|
-S . \
|
||||||
|
|
Loading…
Reference in a new issue