aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml19
1 files changed, 3 insertions, 16 deletions
diff --git a/appveyor.yml b/appveyor.yml
index f73f413b..84d9fbce 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -15,25 +15,11 @@ environment:
- compiler: msvc-14-seh
generator: "Visual Studio 14 2015"
+ enabled_on_pr: yes
- compiler: msvc-14-seh
generator: "Visual Studio 14 2015 Win64"
- - compiler: msvc-12-seh
- generator: "Visual Studio 12 2013"
-
- - compiler: msvc-12-seh
- generator: "Visual Studio 12 2013 Win64"
-
- - compiler: msvc-11-seh
- generator: "Visual Studio 11 2012"
-
- - compiler: msvc-11-seh
- generator: "Visual Studio 11 2012 Win64"
-
- - compiler: msvc-10-seh
- generator: "Visual Studio 10 2010"
-
- compiler: gcc-5.3.0-posix
generator: "MinGW Makefiles"
cxx_path: 'C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin'
@@ -86,7 +72,8 @@ build_script:
if ($LastExitCode -ne 0) {
throw "Exec: $ErrorMessage"
}
- & cmake --build . --config $env:configuration
+ $cmake_parallel = if ($env:generator -eq "MinGW Makefiles") {"-j2"} else {"/m"}
+ & cmake --build . --config $env:configuration -- $cmake_parallel
if ($LastExitCode -ne 0) {
throw "Exec: $ErrorMessage"
}