diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 01292f2c..6386bc84 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -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 }}