summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2023-08-27 18:37:45 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2023-08-27 18:48:25 +0530
commit89c8554d02ca1747cdb1a95e4ae24bccdce711c1 (patch)
treec11eab85a0903108a10730aee00451f2dd3e7fbe
parentb466882ba4b34964f769772c4177e55d1f0692f9 (diff)
Fix build failure
-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