From 8f7f8560a7ff3db832748bef576bbfd5af527fcf Mon Sep 17 00:00:00 2001 From: Chris Dickens Date: Thu, 26 Mar 2020 15:40:23 -0700 Subject: appveyor: Increase build coverage to all VS solutions Using the 'for' construct allows the specification of a more complex build matrix. This additionally simplifies the builds using MinGW and Cygwin because the build script can be unified and does not require checking for the 'Release' configuration. This change also extends the MinGW builds to cover both 32-bit and 64-bit builds using GCC versions 6.3.0 and 8.1.0, respectively. The Cygwin builds were similarly extended to include 64-bit build coverage. Signed-off-by: Chris Dickens --- appveyor_cygwin.bat | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 appveyor_cygwin.bat (limited to 'appveyor_cygwin.bat') diff --git a/appveyor_cygwin.bat b/appveyor_cygwin.bat deleted file mode 100644 index 80c7a7e..0000000 --- a/appveyor_cygwin.bat +++ /dev/null @@ -1,11 +0,0 @@ -echo on -SetLocal EnableDelayedExpansion - -if [%Configuration%] NEQ [Release] exit 0 -if [%Platform%] NEQ [Win32] exit 0 - -C:\cygwin\bin\bash -e -l -c "./bootstrap.sh" || exit /B -C:\cygwin\bin\bash -e -l -c "mkdir build-Win32-cygwin" || exit /B -C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && ../configure --enable-examples-build --enable-tests-build" || exit /B -C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make -j4" || exit /B -C:\cygwin\bin\bash -e -l -c "cd build-Win32-cygwin && make install" || exit /B \ No newline at end of file -- cgit v1.2.1