From b1b43f1e1a535827640833c5214755c28348da5e Mon Sep 17 00:00:00 2001 From: Stefan Seefeld Date: Sat, 1 Feb 2025 13:29:06 -0500 Subject: [PATCH] Fix homebrew include path. --- .github/workflows/test-osx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-osx.yml b/.github/workflows/test-osx.yml index 03b99f8c..bf2008d4 100644 --- a/.github/workflows/test-osx.yml +++ b/.github/workflows/test-osx.yml @@ -32,7 +32,7 @@ jobs: faber -v sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber faber \ - --with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ + --with-boost-include=$(brew --prefix boost)/include \ --builddir=build \ cxx.name=${{ matrix.cxx }} \ cxxflags=-std=${{ matrix.std }} \ @@ -40,7 +40,7 @@ jobs: - name: test run: | faber \ - --with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ + --with-boost-include=$(brew --prefix boost)/include \ --builddir=build\ cxx.name=${{ matrix.cxx }} \ cxxflags=-std=${{ matrix.std }} \