summaryrefslogtreecommitdiff
path: root/.github
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 /.github
parentc9ba857c4637b9797dd77effd3d434b03135224e (diff)
Do not pay attention to brew installation result
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pip-packaging-osx.yml3
1 files changed, 2 insertions, 1 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