Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix velox_dwio_parquet_reader_benchmark build on Ubuntu #10648

Closed
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
env:
VELOX_DEPENDENCY_SOURCE: BUNDLED
MAKEFLAGS: "NUM_THREADS=8 MAX_HIGH_MEM_JOBS=4 MAX_LINK_JOBS=4"
EXTRA_CMAKE_FLAGS: "-DVELOX_ENABLE_ARROW=ON"
EXTRA_CMAKE_FLAGS: "-DVELOX_ENABLE_ARROW=ON -DVELOX_ENABLE_PARQUET=ON"
run: |
make debug

Expand Down
21 changes: 5 additions & 16 deletions velox/dwio/parquet/tests/reader/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,14 @@ target_link_libraries(
velox_exec_test_lib
velox_exec
velox_hive_connector
Folly::folly
${TEST_LINK_LIBS}
${FOLLY_BENCHMARK}
${TEST_LINK_LIBS})
Folly::folly)

add_executable(velox_dwio_parquet_reader_benchmark
ParquetReaderBenchmarkMain.cpp)
target_link_libraries(
velox_dwio_parquet_reader_benchmark
velox_dwio_parquet_reader_benchmark_lib
velox_dwio_parquet_reader
velox_dwio_parquet_writer
velox_exec_test_lib
velox_exec
velox_hive_connector
Folly::folly
${TEST_LINK_LIBS})
velox_dwio_parquet_reader_benchmark velox_dwio_parquet_reader_benchmark_lib)

add_executable(velox_dwio_parquet_reader_test ParquetReaderTest.cpp
ParquetReaderBenchmarkTest.cpp)
Expand All @@ -66,11 +58,8 @@ add_test(
COMMAND velox_dwio_parquet_reader_test
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(
velox_dwio_parquet_reader_test
velox_dwio_native_parquet_reader
velox_dwio_parquet_reader_benchmark_lib
velox_link_libs
${TEST_LINK_LIBS})
velox_dwio_parquet_reader_test velox_dwio_parquet_reader_benchmark_lib
velox_link_libs)

add_executable(velox_dwio_parquet_structure_decoder_test
NestedStructureDecoderTest.cpp)
Expand Down
Loading