Skip to content

Commit

Permalink
More workarounds for MacOS build issues in Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Jul 5, 2022
1 parent 4cda351 commit ce772f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ jobs:
env:
CC: ${{ matrix.cc }} # Do not pass -Werror when building dependencies
- run: ./bootstrap.sh
- run: CPPFLAGS="-I/usr/local/include" pip install -v .
# CPPFLAGS and LDFLAGS are to work around Python config oddities that
# cause it to run clang with options that prevent these locations being
# searched.
- run: CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" pip install -v .
- name: Run tests
run: ./.ci/py-tests.sh
- run: flake8
Expand Down

0 comments on commit ce772f0

Please sign in to comment.