jobs: - job: 'Test' displayName: "Build and test" timeoutInMinutes: 0 cancelTimeoutInMinutes: 60 pool: vmImage: macOS-10.14 strategy: matrix: Python36: python.version: '3.6' Python37: python.version: '3.7' Python38: python.version: '3.8' steps: - bash: echo "##vso[task.prependpath]$CONDA/bin" displayName: Add conda to PATH - bash: conda create --yes --quiet --name gudhi_build_env displayName: Create Anaconda environment - bash: | source activate gudhi_build_env conda install --yes --quiet --name gudhi_build_env python=$PYTHON_VERSION 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: | 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 .. make make doxygen ctest -j 8 --output-on-failure # -E sphinx remove sphinx build as it fails displayName: 'Build, test and documentation generation'