summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-07-04 16:10:22 +0200
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-07-04 16:10:22 +0200
commit51729a60ffab115aba2f9f12906728676262259b (patch)
tree80b5a2a0f17a33b5c1b7fdd371a9135d0f5af3d0 /azure-pipelines.yml
parenta746d7ad0cd5df72afd874b8dbe5e97afc5581d8 (diff)
try ninja for osx
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index e005b3be..d3086d31 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -25,14 +25,14 @@ jobs:
python -m pip install --user -r ext/gudhi-deploy/test-requirements.txt
python -m pip uninstall -y pykeops
brew update || true
- brew install graphviz doxygen boost eigen gmp mpfr tbb cgal || true
+ brew install ninja graphviz doxygen boost eigen gmp mpfr tbb cgal || true
displayName: 'Install build dependencies'
- bash: |
mkdir build
cd build
- cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON ..
- make
- make doxygen
+ cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) -GNinja -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON ..
+ ninja
+ ninja doxygen
ctest --output-on-failure
displayName: 'Build, test and documentation generation'