From: NRK Date: Tue, 10 Jan 2023 08:01:46 +0000 (+0600) Subject: attempt at fixing macos CI X-Git-Tag: v4.8~40^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=cf68675478c0b78bf975a0ddb627742cefeefe81;p=nnn.git attempt at fixing macos CI --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 667c40aa..38f5dba1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,9 +27,10 @@ jobs: env: CC: clang run: | - rm '/usr/local/bin/2to3-3.11' - brew update - brew install llvm + # see: https://github.com/actions/setup-python/issues/577 + brew update || true + brew install llvm || true + brew link --overwrite python@3.11 export PATH="/usr/local/opt/llvm/bin:$PATH" export CFLAGS="$CFLAGS -Werror" make clean