2015-10-18 15:04:24 +00:00
|
|
|
version: 1.0.{build}
|
2017-03-12 03:03:23 +00:00
|
|
|
image:
|
|
|
|
- Visual Studio 2017
|
|
|
|
- Visual Studio 2015
|
2015-10-23 08:21:09 +00:00
|
|
|
test: off
|
2017-04-05 15:02:34 +00:00
|
|
|
build:
|
|
|
|
parallel: true
|
2016-07-29 22:15:01 +00:00
|
|
|
platform:
|
|
|
|
- x64
|
2017-03-12 03:03:23 +00:00
|
|
|
- x86
|
2015-10-23 08:21:09 +00:00
|
|
|
environment:
|
|
|
|
matrix:
|
2017-08-23 15:18:57 +00:00
|
|
|
- PYTHON: 36
|
2017-05-09 18:37:48 +00:00
|
|
|
CPP: 14
|
2017-08-23 15:18:57 +00:00
|
|
|
CONFIG: Debug
|
|
|
|
- PYTHON: 27
|
2017-05-09 18:37:48 +00:00
|
|
|
CPP: 14
|
2017-08-23 15:18:57 +00:00
|
|
|
CONFIG: Debug
|
2017-05-09 18:37:48 +00:00
|
|
|
- CONDA: 36
|
|
|
|
CPP: latest
|
2017-08-23 15:18:57 +00:00
|
|
|
CONFIG: Release
|
2017-03-12 03:03:23 +00:00
|
|
|
matrix:
|
2017-04-05 22:09:02 +00:00
|
|
|
exclude:
|
|
|
|
- image: Visual Studio 2015
|
|
|
|
platform: x86
|
2017-05-09 18:37:48 +00:00
|
|
|
- image: Visual Studio 2015
|
|
|
|
CPP: latest
|
|
|
|
- image: Visual Studio 2017
|
|
|
|
CPP: latest
|
|
|
|
platform: x86
|
2015-10-18 15:04:24 +00:00
|
|
|
install:
|
2016-07-29 22:15:01 +00:00
|
|
|
- ps: |
|
|
|
|
if ($env:PLATFORM -eq "x64") { $env:CMAKE_ARCH = "x64" }
|
2017-08-08 14:02:31 +00:00
|
|
|
if ($env:APPVEYOR_JOB_NAME -like "*Visual Studio 2017*") {
|
|
|
|
$env:CMAKE_GENERATOR = "Visual Studio 15 2017"
|
|
|
|
$env:CMAKE_INCLUDE_PATH = "C:\Libraries\boost_1_64_0"
|
|
|
|
} else {
|
|
|
|
$env:CMAKE_GENERATOR = "Visual Studio 14 2015"
|
|
|
|
}
|
2016-07-29 22:15:01 +00:00
|
|
|
if ($env:PYTHON) {
|
|
|
|
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
|
|
|
|
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
|
|
|
|
pip install --disable-pip-version-check --user --upgrade pip wheel
|
2017-08-23 15:18:57 +00:00
|
|
|
pip install pytest numpy
|
2016-07-29 22:15:01 +00:00
|
|
|
} elseif ($env:CONDA) {
|
|
|
|
if ($env:CONDA -eq "27") { $env:CONDA = "" }
|
|
|
|
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
|
|
|
|
$env:PATH = "C:\Miniconda$env:CONDA\;C:\Miniconda$env:CONDA\Scripts\;$env:PATH"
|
2017-03-23 16:27:32 +00:00
|
|
|
$env:PYTHONHOME = "C:\Miniconda$env:CONDA"
|
2016-08-12 11:50:00 +00:00
|
|
|
conda install -y -q pytest numpy scipy
|
2016-07-29 22:15:01 +00:00
|
|
|
}
|
|
|
|
- ps: |
|
2017-04-10 18:48:24 +00:00
|
|
|
Start-FileDownload 'http://bitbucket.org/eigen/eigen/get/3.3.3.zip'
|
|
|
|
7z x 3.3.3.zip -y > $null
|
2017-08-08 14:02:31 +00:00
|
|
|
$env:CMAKE_INCLUDE_PATH = "eigen-eigen-67e894c6cd8f;$env:CMAKE_INCLUDE_PATH"
|
2015-10-18 15:04:24 +00:00
|
|
|
build_script:
|
2017-03-23 16:27:32 +00:00
|
|
|
- cmake -G "%CMAKE_GENERATOR%" -A "%CMAKE_ARCH%"
|
|
|
|
-DPYBIND11_CPP_STANDARD=/std:c++%CPP%
|
|
|
|
-DPYBIND11_WERROR=ON
|
|
|
|
-DDOWNLOAD_CATCH=ON
|
|
|
|
-DCMAKE_SUPPRESS_REGENERATION=1
|
2016-07-29 22:15:01 +00:00
|
|
|
- set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2017-08-23 15:18:57 +00:00
|
|
|
- cmake --build . --config %CONFIG% --target pytest -- /m /v:m /logger:%MSBuildLogger%
|
|
|
|
- cmake --build . --config %CONFIG% --target cpptest -- /m /v:m /logger:%MSBuildLogger%
|
|
|
|
- if "%CPP%"=="latest" (cmake --build . --config %CONFIG% --target test_cmake_build -- /m /v:m /logger:%MSBuildLogger%)
|
2017-03-23 16:27:32 +00:00
|
|
|
on_failure: if exist "tests\test_cmake_build" type tests\test_cmake_build\*.log*
|