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
|
||||
defaults:
|
||||
run:
|
||||
shell: msys2 {0}
|
||||
shell: mingw64 {0}
|
||||
strategy:
|
||||
max-parallel: 10
|
||||
fail-fast: false
|
||||
|
|
|
@ -32,4 +32,3 @@ license = COPYING
|
|||
requiresAdminRights = true
|
||||
multiUserInstall = false
|
||||
script = ports/deploy/installscript.nsi
|
||||
verbose = true
|
||||
|
|
|
@ -39,7 +39,7 @@ echo
|
|||
|
||||
export PATH=/c/msys64/mingw64/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
||||
buildDir=build-${COMPILER}-x64
|
||||
mkdir ${buildDir}
|
||||
mkdir -p ${buildDir}
|
||||
cmake \
|
||||
-LA \
|
||||
-S . \
|
||||
|
@ -59,7 +59,7 @@ echo
|
|||
|
||||
export PATH=/c/msys64/mingw32/bin:/c/msys64/usr/bin:${ORIG_PATH}
|
||||
buildDir=build-${COMPILER}-x86
|
||||
mkdir ${buildDir}
|
||||
mkdir -p ${buildDir}
|
||||
cmake \
|
||||
-LA \
|
||||
-S . \
|
||||
|
|
Loading…
Reference in a new issue