summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-05 07:05:45 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-05 07:05:45 +0200
commit03b8322e9ded09cc879867008d32baa3a91a45e5 (patch)
tree0123c8d09ec5decc89b9001d3db221098a5319dc /azure-pipelines.yml
parent71d958891cc638b26541ca5cf6c569b43332d2b6 (diff)
brew install cgal & Cie instead of conda install because of link issue
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b3b0ea7f..3ab2f112 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -11,6 +11,7 @@ jobs:
Python36:
python.version: '3.6'
CMakeBuildType: Release
+ customInstallation: 'brew update && brew install graphviz doxygen boost eigen gmp mpfr tbb cgal'
#Python37:
# python.version: '3.7'
#Python38:
@@ -26,10 +27,9 @@ jobs:
- bash: |
source activate gudhi_build_env
sudo conda install --yes --quiet --name gudhi_build_env python=$PYTHON_VERSION
- sudo conda update --yes --quiet -n base -c defaults conda
- sudo conda install --yes -c conda-forge doxygen eigen boost-cpp=1.70.0 cgal-cpp>=5.0
python -m pip install --user -r .github/build-requirements.txt
python -m pip install --user -r .github/test-requirements.txt
+ $(customInstallation)
displayName: 'Install build dependencies'
- bash: |
source activate gudhi_build_env