summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-04 10:46:19 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-04 10:46:19 +0200
commit250eb63a0424773344e6ada290dc42a4f5cee67b (patch)
tree80c5b8557e436e48ff8330febe88eb24703514cc
parentc9ba857c4637b9797dd77effd3d434b03135224e (diff)
Do not pay attention to brew installation result
-rw-r--r--.github/workflows/pip-packaging-osx.yml3
-rw-r--r--azure-pipelines.yml4
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index 85c3c807..c94369ac 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -22,7 +22,8 @@ jobs:
architecture: x64
- name: Install dependencies
run: |
- brew update && brew install boost eigen gmp mpfr cgal
+ brew update || true
+ brew install boost eigen gmp mpfr cgal || true
python -m pip install --user -r .github/build-requirements.txt
python -m pip install --user twine delocate
- name: Build python wheel
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 48291fbc..8e88cab5 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -9,7 +9,6 @@ jobs:
variables:
pythonVersion: '3.6'
cmakeBuildType: Release
- customInstallation: 'brew update && brew install graphviz doxygen boost eigen gmp mpfr tbb cgal'
steps:
- bash: echo "##vso[task.prependpath]$CONDA/bin"
@@ -23,7 +22,8 @@ jobs:
sudo conda install --yes --quiet --name gudhi_build_env python=$(pythonVersion)
python -m pip install --user -r .github/build-requirements.txt
python -m pip install --user -r .github/test-requirements.txt
- $(customInstallation)
+ brew update || true
+ brew install graphviz doxygen boost eigen gmp mpfr tbb cgal || true
displayName: 'Install build dependencies'
- bash: |
source activate gudhi_build_env