aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorUlrich Spörlein <uqs@FreeBSD.org>2021-01-08 15:36:38 +0100
committerUlrich Spörlein <uqs@FreeBSD.org>2021-01-08 15:36:38 +0100
commit40903394bf48c916f0790fac8a2cde5c487a2676 (patch)
treed68c92b5ac73f850acc446cf506c018ca530adb7 /.github
parent6815909abdaace1f8f70678873c763deec36223a (diff)
GitHub actions: unbreak macOS build
Error: llvm 11.0.0 is already installed Also make the linking failure non-fatal: Error: The `brew link` step did not complete successfully
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-bootstrap-tools.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/cross-bootstrap-tools.yml b/.github/workflows/cross-bootstrap-tools.yml
index e8187e4299e9..65db86de3a97 100644
--- a/.github/workflows/cross-bootstrap-tools.yml
+++ b/.github/workflows/cross-bootstrap-tools.yml
@@ -25,8 +25,7 @@ jobs:
pkgs: bmake libarchive-dev
- os: macOS-latest
compiler: clang-11
- #cross-bindir: /usr/local/Cellar/llvm/11.0.0/bin # script figures this out automatically
- pkgs: bmake libarchive llvm@11
+ pkgs: bmake libarchive
steps:
- uses: actions/checkout@v2
@@ -39,7 +38,7 @@ jobs:
if: runner.os == 'macOS'
run: |
brew update --quiet || true
- brew install ${{ matrix.pkgs }}
+ brew install ${{ matrix.pkgs }} || true
- name: create environment
run: |
echo "GITHUB_WORKSPACE = $GITHUB_WORKSPACE"