File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ version: '{build}'
22branches :
33 only :
44 - master
5+ - appveyor
56 - /^maint.*/
67environment :
78 GITTEST_INVASIVE_FS_STRUCTURE : 1
Original file line number Diff line number Diff line change @@ -7,15 +7,17 @@ if [ "$ARCH" = "i686" ]; then
77 curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/$f
88 fi
99 7z x $f > /dev/null
10- mv mingw32 /MinGW
10+ export PATH= ` pwd ` / mingw32/bin: $PATH
1111else
1212 f=x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
1313 if ! [ -e $f ]; then
1414 curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/$f
1515 fi
1616 7z x $f > /dev/null
17- mv mingw64 /MinGW
17+ export PATH= ` pwd ` / mingw64/bin: $PATH
1818fi
1919cd build
20+ gcc --version
21+ cmake --version
2022cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G" $GENERATOR "
2123cmake --build . --config RelWithDebInfo
You can’t perform that action at this time.
0 commit comments