diff options
| author | Gaëtan Gilbert | 2020-07-23 11:30:11 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-07-23 11:30:11 +0200 |
| commit | 667fac4add739479bc263f93f5c67f2c5414a865 (patch) | |
| tree | e01c0041e0b8dfb3ac3aa9ecbf9bc7a12b0f9878 | |
| parent | 58df19e952f23ce9376c67f21d09e515a861db0c (diff) | |
| parent | b7d501fb22e6725da20c59b895e19d30b6b2ad50 (diff) | |
Merge PR #12672: Fix failing macOS build.
Ack-by: JasonGross
Reviewed-by: SkySkimmer
| -rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 305c6a627e..b27d1df39d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -64,7 +64,8 @@ jobs: set -e brew update (cd $(brew --repository)/Library/Taps/homebrew/homebrew-core/ && git fetch --shallow-since=${HBCORE_DATE} && git checkout ${HBCORE_REF}) - brew install gnu-time opam pkg-config gtksourceview3 adwaita-icon-theme + brew install gnu-time opam pkg-config gtksourceview3 adwaita-icon-theme || true + # || true: workaround #12657, see also #12672 and commit message for this line pip3 install macpack displayName: 'Install system dependencies' env: |
