Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Nov 18, 2024
1 parent 51ae757 commit d9b91f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ jobs:
if: ${{ matrix.pg >= 15 }}

- name: Generate
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_C_FLAGS=-I\ /usr/local/include
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }}
env:
# Fixes missing libintl.h on some runners
CFLAGS: "-I /usr/local/include"

- name: Build
run: cmake --build build --config ${{ matrix.config }}
Expand Down

0 comments on commit d9b91f6

Please sign in to comment.