Switched shell to mingw64.

This commit is contained in:
Gonzalo Exequiel Pedone 2021-10-29 19:11:08 -03:00
parent 9805a0ee8a
commit 90a8a6511d
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF
3 changed files with 3 additions and 4 deletions

View file

@ -11,7 +11,7 @@ jobs:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
shell: mingw64 {0}
strategy:
max-parallel: 10
fail-fast: false

View file

@ -32,4 +32,3 @@ license = COPYING
requiresAdminRights = true
multiUserInstall = false
script = ports/deploy/installscript.nsi
verbose = true

View file

@ -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 . \