aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2015-07-09 21:46:44 +0200
committerEven Rouault <even.rouault@spatialys.com>2015-07-09 21:46:44 +0200
commit5432f044d4fb696785c502f4fd6917918de36be6 (patch)
tree82cce8676fcc4c9369be50c0af9a8b28b05c92fa /appveyor.yml
parent9f10ff75e863d121294c199ab4df77abaa6328d5 (diff)
downloadPROJ-5432f044d4fb696785c502f4fd6917918de36be6.tar.gz
PROJ-5432f044d4fb696785c502f4fd6917918de36be6.zip
appveyor.yml: run multistresstest.exe in one of the confs
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 85eae730..279d45ab 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -5,6 +5,8 @@ platform:
environment:
matrix:
+ - BUILD_TYPE: nmake
+
# Does not work
# VS 2008
# - BUILD_TYPE: cmake
@@ -22,8 +24,6 @@ environment:
- BUILD_TYPE: cmake
VS_VERSION: Visual Studio 12
- - BUILD_TYPE: nmake
-
shallow_clone: true
build_script:
@@ -33,6 +33,9 @@ build_script:
- if "%BUILD_TYPE%" == "nmake" if "%platform%" == "x64" call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
- if "%BUILD_TYPE%" == "nmake" nmake /f makefile.vc
- if "%BUILD_TYPE%" == "nmake" nmake /f makefile.vc install-all
+ - if "%BUILD_TYPE%" == "nmake" if "%platform%" == "x64" cd src
+ - if "%BUILD_TYPE%" == "nmake" if "%platform%" == "x64" nmake /f makefile.vc multistresstest.exe
+ - if "%BUILD_TYPE%" == "nmake" if "%platform%" == "x64" multistresstest.exe
- if "%BUILD_TYPE%" == "cmake" if "%platform%" == "x64" SET VS_FULL=%VS_VERSION% Win64
- if "%BUILD_TYPE%" == "cmake" if "%platform%" == "x86" SET VS_FULL=%VS_VERSION%
- if "%BUILD_TYPE%" == "cmake" echo "%VS_FULL%"