2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 04:42:28 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Stefan Seefeld
f60cf9fe2c Make sure to pass C++ version to preprocessor as well. 2025-02-01 22:15:24 -05:00
Stefan Seefeld
cd6393e802 Fix homebrew include path. 2025-02-01 13:29:06 -05:00
2 changed files with 6 additions and 2 deletions

View File

@@ -32,17 +32,19 @@ jobs:
faber -v faber -v
sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber
faber \ faber \
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ --with-boost-include=$(brew --prefix boost)/include \
--builddir=build \ --builddir=build \
cxx.name=${{ matrix.cxx }} \ cxx.name=${{ matrix.cxx }} \
cxxflags=-std=${{ matrix.std }} \ cxxflags=-std=${{ matrix.std }} \
cppflags=-std=${{ matrix.std }} \
-j`sysctl -n hw.ncpu` -j`sysctl -n hw.ncpu`
- name: test - name: test
run: | run: |
faber \ faber \
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ --with-boost-include=$(brew --prefix boost)/include \
--builddir=build\ --builddir=build\
cxx.name=${{ matrix.cxx }} \ cxx.name=${{ matrix.cxx }} \
cxxflags=-std=${{ matrix.std }} \ cxxflags=-std=${{ matrix.std }} \
cppflags=-std=${{ matrix.std }} \
-j`sysctl -n hw.ncpu` \ -j`sysctl -n hw.ncpu` \
test.report test.report

View File

@@ -39,6 +39,7 @@ jobs:
--builddir=build \ --builddir=build \
cxx.name=${{ matrix.cxx }} \ cxx.name=${{ matrix.cxx }} \
cxxflags=-std=${{ matrix.std }} \ cxxflags=-std=${{ matrix.std }} \
cppflags=-std=${{ matrix.std }} \
-j`nproc` -j`nproc`
- name: test - name: test
run: | run: |
@@ -47,5 +48,6 @@ jobs:
--builddir=build \ --builddir=build \
cxx.name=${{ matrix.cxx }} \ cxx.name=${{ matrix.cxx }} \
cxxflags=-std=${{ matrix.std }} \ cxxflags=-std=${{ matrix.std }} \
cppflags=-std=${{ matrix.std }} \
-j`nproc` \ -j`nproc` \
test.report test.report