summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml63
1 files changed, 63 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 00000000..6ed75cf7
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,63 @@
+image:
+ - Visual Studio 2017
+
+build:
+ parallel: true
+ verbosity: detailed
+
+configuration:
+ - Release
+
+environment:
+ # update the vcpkg cache even if build fails
+ APPVEYOR_SAVE_CACHE_ON_ERROR: true
+
+ matrix:
+ - target: Examples
+ CMAKE_FLAGS: -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF
+ PYTHON: "C:\\Python37-x64"
+
+ - target: UnitaryTests
+ CMAKE_FLAGS: -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF
+ PYTHON: "C:\\Python37-x64"
+
+ - target: Utilities
+ CMAKE_FLAGS: -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF
+ PYTHON: "C:\\Python37-x64"
+
+ - target: Python
+ CMAKE_FLAGS: -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON
+ PYTHON: "C:\\Python37-x64"
+
+
+cache:
+ - c:\Tools\vcpkg\installed
+ - '%LOCALAPPDATA%\pip\Cache'
+
+init:
+ - echo %target%
+
+
+install:
+ - vcpkg install tbb:x64-windows boost-disjoint-sets:x64-windows boost-serialization:x64-windows boost-date-time:x64-windows boost-system:x64-windows boost-filesystem:x64-windows boost-units:x64-windows boost-thread:x64-windows boost-program-options:x64-windows eigen3:x64-windows mpfr:x64-windows mpir:x64-windows cgal:x64-windows
+ - SET PATH=c:\Tools\vcpkg\installed\x64-windows\bin;%PATH%
+ - SET PATH=%PYTHON%;%PYTHON%\Scripts;%PYTHON%\Library\bin;%PATH%
+ - SET PYTHONPATH=%PYTHON%\\Lib\\site-packages;%PYTHONPATH%
+ - CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
+ - python --version
+ - pip --version
+ - python -m pip install --upgrade pip
+ - pip install -U setuptools numpy matplotlib scipy Cython pytest
+
+build_script:
+ - mkdir build
+ - cd build
+ - cmake -G "Visual Studio 15 2017 Win64" %CMAKE_FLAGS% -DGMP_INCLUDE_DIR="c:/Tools/vcpkg/installed/x64-windows/include" -DGMP_LIBRARIES="c:/Tools/vcpkg/installed/x64-windows/lib/mpir.lib" -DGMP_LIBRARIES_DIR="c:/Tools/vcpkg/installed/x64-windows/lib" -DCMAKE_TOOLCHAIN_FILE=c:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
+ - if [%target%]==[Python] (
+ cd src/python &
+ MSBuild Cython.sln /m /p:Configuration=Release /p:Platform=x64 &
+ ctest -j 1 -C Release
+ ) else (
+ MSBuild GUDHIdev.sln /m /p:Configuration=Release /p:Platform=x64 &
+ ctest -j 1 -C Release -E diff_files
+ )