Skip to content
Open
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
8 changes: 8 additions & 0 deletions .github/workflows/cmake-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
build_mode: dev
extra_flags: "-Werror"
parquet_tools: true
- name: "CMake Protobuf Tools"
os: ubuntu-latest
build_mode: dev
protobuf_tools: true
- name: "CMake Linux (No Introspection)"
os: ubuntu-latest
build_mode: dev
Expand Down Expand Up @@ -86,6 +90,10 @@ jobs:
CMAKE_ARGS="$CMAKE_ARGS -DOPENZL_BUILD_BENCHMARKS=ON"
fi

if [ "${{ matrix.protobuf_tools }}" = "true" ]; then
CMAKE_ARGS="$CMAKE_ARGS -DOPENZL_BUILD_PROTOBUF_TOOLS=ON"
fi

echo "Running: cmake $CMAKE_ARGS .."
cmake $CMAKE_ARGS ..

Expand Down
Loading