-
Notifications
You must be signed in to change notification settings - Fork 66
/
azure-pipelines.yml
105 lines (100 loc) · 4.61 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
jobs:
- job: "OSx"
displayName: "Build and test OSx"
timeoutInMinutes: 0
cancelTimeoutInMinutes: 60
pool:
vmImage: macOS-13
variables:
pythonVersion: "3.9"
cmakeBuildType: Release
gudhiCmakeOptions: -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON
# On this VM, 2 versions of python are installed. Default Python_FIND_FRAMEWORK is FIRST, which means asks frameworks first
# LAST means consult frameworks in last resort, use the PATH first
extraCmakeOptions: -DPython_FIND_FRAMEWORK=LAST
steps:
# Use a specific Python version
- task: UsePythonVersion@0
displayName: Use Python $(pythonVersion)
inputs:
versionSpec: $(pythonVersion)
addToPath: true
architecture: "x64"
- bash: |
git submodule update --init
python -m pip install --user -r ext/gudhi-deploy/build-requirements.txt
python -m pip install --user -r ext/gudhi-deploy/test-requirements.txt
python -m pip uninstall -y pykeops
brew update || true
brew install ninja graphviz doxygen boost eigen gmp mpfr tbb cgal || true
displayName: "Install build dependencies"
- bash: |
mkdir build
cd build
which python
cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) $(extraCmakeOptions) -GNinja $(gudhiCmakeOptions) ..
ninja
ninja doxygen
ctest --output-on-failure
displayName: "Build, test and documentation generation"
- job: "Windows"
displayName: "Build and test Windows"
timeoutInMinutes: 0
cancelTimeoutInMinutes: 60
pool:
vmImage: windows-latest
variables:
pythonVersion: "3.9"
cmakeVcpkgFlags: -DVCPKG_TARGET_TRIPLET=x64-windows -DCMAKE_TOOLCHAIN_FILE=c:\vcpkg\scripts\buildsystems\vcpkg.cmake
# WITH_GUDHI_PYTHON=OFF on purpose. It is set to ON on a second cmake call
gudhiCmakeOptions: -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF
# On this VM, 2 versions of python are installed. Default Python_FIND_REGISTRY is FIRST, which means asks registry first
# LAST means consult registry in last resort, use the standard libraries or headers first
extraCmakeOptions: -DPython_FIND_REGISTRY=LAST
steps:
# Use a specific Python version
- task: UsePythonVersion@0
displayName: Use Python $(pythonVersion)
inputs:
versionSpec: $(pythonVersion)
addToPath: true
architecture: "x64"
- script: |
git submodule update --init
python -m pip install --user -r ext/gudhi-deploy/build-requirements.txt
IF %ERRORLEVEL% NEQ 0 EXIT 1
python -m pip install --user -r ext/gudhi-deploy/test-requirements.txt
IF %ERRORLEVEL% NEQ 0 EXIT 1
# Only vcpkg release libs for CI
echo.set(VCPKG_BUILD_TYPE release)>> C:\vcpkg\triplets\x64-windows.cmake
vcpkg install boost-filesystem:x64-windows boost-test:x64-windows boost-program-options:x64-windows tbb:x64-windows eigen3:x64-windows cgal:x64-windows
IF %ERRORLEVEL% NEQ 0 EXIT 1
choco install -y ninja --force --force-dependencies
IF %ERRORLEVEL% NEQ 0 EXIT 1
displayName: "Install build dependencies"
- script: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -G "Ninja" -DFORCE_EIGEN_DEFAULT_DENSE_INDEX_TYPE_TO_INT=ON $(cmakeVcpkgFlags) $(gudhiCmakeOptions) ..
IF %ERRORLEVEL% NEQ 0 EXIT 1
ninja
IF %ERRORLEVEL% NEQ 0 EXIT 1
ctest --output-on-failure -C Release -E diff_files
IF %ERRORLEVEL% NEQ 0 EXIT 1
cmake $(extraCmakeOptions) -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON .
IF %ERRORLEVEL% NEQ 0 EXIT 1
cd src\python
copy "C:\vcpkg\installed\x64-windows\bin\mpfr*.dll" ".\gudhi\"
IF %ERRORLEVEL% NEQ 0 EXIT 1
copy "C:\vcpkg\installed\x64-windows\bin\gmp*.dll" ".\gudhi\"
IF %ERRORLEVEL% NEQ 0 EXIT 1
copy "C:\vcpkg\installed\x64-windows\bin\tbb*.dll" ".\gudhi\"
IF %ERRORLEVEL% NEQ 0 EXIT 1
python setup.py build_ext --inplace
IF %ERRORLEVEL% NEQ 0 EXIT 1
SET PYTHONPATH=%CD%;%PYTHONPATH%
echo %PYTHONPATH%
ctest --output-on-failure -C Release
IF %ERRORLEVEL% NEQ 0 EXIT 1
displayName: "Build and test"