diff --git a/.github/workflows/ci-unix-static.yml b/.github/workflows/ci-unix-static.yml index fe6fb47621..694bc52abc 100644 --- a/.github/workflows/ci-unix-static.yml +++ b/.github/workflows/ci-unix-static.yml @@ -3,7 +3,7 @@ on: push: pull_request: paths: - - '.github/workflows/ci-unix-static-yml' + - '.github/workflows/ci-unix-static.yml' - '**CMakeLists.txt' - 'cmake/**' - 'ext/**' @@ -34,6 +34,9 @@ jobs: - name: Set GCC & G++ compiler (on Linux) if: runner.os == 'Linux' run: echo "CC=gcc-${{matrix.gcc}}" >> $GITHUB_ENV && echo "CXX=g++-${{matrix.gcc}}" >> $GITHUB_ENV + - name: Set include path (on macOS) + if: runner.os == 'macOS' + run: echo "C_INCLUDE_PATH="$HOMEBREW_PREFIX/include:$C_INCLUDE_PATH" >> $GITHUB_ENV - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 with: python-version: '3.x'