Skip to content

Commit

Permalink
Use simpler workaround for Homebrew directory change
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Apr 30, 2024
1 parent cb3cca9 commit d4406f9
Showing 1 changed file with 8 additions and 24 deletions.
32 changes: 8 additions & 24 deletions .github/workflows/test-libmaxminddb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,35 +45,19 @@ jobs:
if: matrix.platform == 'ubuntu-latest'

- name: Install libmaxminddb
run: brew install libmaxminddb && brew ls --verbose libmaxminddb
run: brew install libmaxminddb
if: matrix.platform == 'macos-latest'

- name: Build with Werror and Wall (not macOS)
run: python setup.py build
if: matrix.platform != 'macos-latest'
env:
CFLAGS: "-Werror -Wall -Wextra"

- name: Test with tox (system libmaxminddb)
run: tox
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"
# Starting at the end of April 2024, the homebrew include and lib
# directories were not properly set up in the flags for the GitHub
# images. I looked for an issue both in Homebrew and actions/runner-images
# and did not find one or similar reports from other users. Setting
# them here seemed easier than digging into it further. It would
# probably be worth trying to remove this in the future.
- name: Build with Werror and Wall (macOS)
- name: Build with Werror and Wall (not macOS)
run: python setup.py build
if: matrix.platform == 'macos-latest'
env:
CFLAGS: "-Werror -Wall -Wextra -I/opt/homebrew/include"
LDFLAGS: "-L/opt/homebrew/lib"
CFLAGS: "${{ env.CFLAGS }} -Werror -Wall -Wextra"

- name: Test with tox (system libmaxminddb)
run: tox
if: matrix.platform == 'macos-latest'
env:
CFLAGS: "-I/opt/homebrew/include"
LDFLAGS: "-L/opt/homebrew/lib"

0 comments on commit d4406f9

Please sign in to comment.