wgtmac commented on code in PR #693:
URL: https://github.com/apache/iceberg-cpp/pull/693#discussion_r3359871102
##########
.github/workflows/cpp-linter.yml:
##########
@@ -41,14 +41,20 @@ jobs:
persist-credentials: false
- name: Install dependencies
shell: bash
- run: sudo apt-get update && sudo apt-get install -y
libcurl4-openssl-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y libcurl4-openssl-dev libsqlite3-dev
libpq-dev default-libmysqlclient-dev
- name: Run build
env:
CC: gcc-14
CXX: g++-14
run: |
mkdir build && cd build
- cmake .. -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
+ cmake .. -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
+ -DICEBERG_BUILD_SQL_CATALOG=ON \
Review Comment:
It would be nice to enhance this in the future by enabling specific modules
only when their paths are affected.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]