summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-08-04 13:49:54 +0200
committerGitHub <noreply@github.com>2020-08-04 13:49:54 +0200
commit2b7524879e2c09cd9a197e6b58a7cc31dc5ed056 (patch)
tree1980b8fbff5d4dccb457f33975c47ee56c0a7d02 /.github
parentf98133a79b8a34ade8a0c214f75264e955420e7e (diff)
parenta62d13c43a882cdf93faffd3ddfae96c30af678e (diff)
Merge pull request #373 from VincentRouvreau/brew_fix
Avoid brew install cgal issue
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