Merge pull request #1563 from N-R-K/macos_ci

attempt at fixing macos CI
This commit is contained in:
Arun 2023-01-10 20:59:49 +05:30 committed by GitHub
commit 12aedd521d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -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