From d9b91f65c0915cf78a5daaee42d8869230f6fd3e Mon Sep 17 00:00:00 2001 From: Zacharias Knudsen Date: Mon, 18 Nov 2024 12:57:54 +0100 Subject: [PATCH] wip --- .github/workflows/test-macos.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 }}