Skip to content

Commit 545737e

Browse files
committed
Disable boost usage with macos latest CI for now
Signed-off-by: Nick Avramoussis <4256455+Idclip@users.noreply.github.com>
1 parent 04644d4 commit 545737e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/weekly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ jobs:
138138
strategy:
139139
matrix:
140140
config:
141-
- { brew_compiler: gcc@13, cmake: '-D CMAKE_CXX_COMPILER=/usr/local/opt/gcc@13/bin/g++-13' }
141+
# Don't link against boost on macos with GCC, there are some symbol issues
142+
# with brew using clang to build its dependencies vs us trying to use GCC
143+
- { brew_compiler: gcc@13, cmake: '-D CMAKE_CXX_COMPILER=/usr/local/opt/gcc@13/bin/g++-13 -DOPENVDB_USE_DELAYED_LOADING=OFF' }
142144
- { brew_compiler: llvm@16, cmake: '-D CMAKE_CXX_COMPILER=/usr/local/opt/llvm@16/bin/clang++' }
143145
fail-fast: false
144146
steps:

0 commit comments

Comments
 (0)