Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/prestocpp-macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
prestocpp-macos-build-engine:
strategy:
matrix:
os: [macos-13, macos-15]
os: [macos-15]
runs-on: ${{ matrix.os }}
needs: changes
permissions:
Expand Down Expand Up @@ -121,13 +121,6 @@ jobs:
export PATH=$(brew --prefix m4)/bin:$(brew --prefix bison)/bin:${PATH}
export BOOST_ROOT=${INSTALL_PREFIX}
cd presto-native-execution
if [[ "${{ matrix.os }}" == "macos-13" ]]; then
# Velox sets -Wno-sign-compare but it needs to apply to Arrow.
# There is also a conflict with Arrow and Velox (Glog) macros which are fixed
# in a newer version of Arrow. The issues cannot be easily fixed in Velox so
# override the warnings that would throw errors.
export CXXFLAGS="-Wno-error=sign-compare -Wno-error=macro-redefined"
fi
cmake -B _build/${BUILD_TYPE} \
-GNinja -DTREAT_WARNINGS_AS_ERRORS=1 \
-DENABLE_ALL_WARNINGS=1 \
Expand Down
Loading