Skip to content

Commit

Permalink
Set include and link dirs explicitly for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Apr 30, 2024
1 parent e7752d3 commit d6da775
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test-libmaxminddb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,16 @@ jobs:
run: brew install libmaxminddb
if: matrix.platform == 'macos-latest'

- name: "Work around macos arm64 homebrew directory changes"
if: runner.os == 'macOS' && runner.arch == 'ARM64'
run: |
echo "CFLAGS=-I/opt/homebrew/include" >> "$GITHUB_ENV"
echo "LDFLAGS=-L/opt/homebrew/lib" >> "$GITHUB_ENV"
- name: Build with Werror and Wall
run: python setup.py build
env:
CFLAGS: "-Werror -Wall -Wextra"
CFLAGS: "${{ env.CFLAGS }} -Werror -Wall -Wextra"

- name: Test with tox (system libmaxminddb)
run: tox

0 comments on commit d6da775

Please sign in to comment.