summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index dc3654c..e775db9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,12 +30,12 @@ jobs:
env:
CC: clang
run: |
- brew update
- brew upgrade python
+ brew update || true
+ brew install llvm || true
+ brew link --overwrite python@3.11
+ export PATH="/usr/local/opt/llvm/bin:$PATH"
pip3 install logilab-common
pip3 install pytest
- brew install llvm
- export PATH="/usr/local/opt/llvm/bin:$PATH"
make clean
make
pytest ./test.py