summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-04 22:31:13 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-04 22:31:13 +0200
commitb880228fb423aeb3d662416fbb477d3ced100e08 (patch)
treeb582aa1f11e3587de7a8c2bfc120986cee75aec0 /azure-pipelines.yml
parent62139c92181b7f405ce0e36ef6b46777cee85b34 (diff)
Need to activate conda env to build
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 97c84136..2fcff411 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -10,10 +10,10 @@ jobs:
matrix:
Python36:
python.version: '3.6'
- Python37:
- python.version: '3.7'
- Python38:
- python.version: '3.8'
+ #Python37:
+ # python.version: '3.7'
+ #Python38:
+ # python.version: '3.8'
steps:
- bash: echo "##vso[task.prependpath]$CONDA/bin"
@@ -26,11 +26,12 @@ jobs:
source activate gudhi_build_env
sudo conda install --yes --quiet --name gudhi_build_env python=$PYTHON_VERSION
sudo conda install --yes -c conda-forge doxygen eigen boost-cpp=1.70.0 cgal-cpp>=5.0
- git submodule update --init
python -m pip install --user -r .github/build-requirements.txt
python -m pip install --user -r .github/test-requirements.txt
displayName: 'Install build dependencies'
- bash: |
+ source activate gudhi_build_env
+ git submodule update --init
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE:STRING=$(CMakeBuildType) -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 ..