Skip to content

Commit

Permalink
echo
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Nov 18, 2024
1 parent e21ae63 commit 6125e16
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ jobs:
if: ${{ matrix.pg >= 15 }}

- name: Generate
run: VERBOSE=true cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }}
run: |
echo "${CFLAGS}"
VERBOSE=true cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }}
env:
CFLAGS: -I\ /usr/local/include
# 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 6125e16

Please sign in to comment.