Skip to content

Commit

Permalink
label and exclude test using cuda driver
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Oct 23, 2024
1 parent ea63ded commit 93e8bda
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
LIBHDFS3_CONF: "${{ github.workspace }}/scripts/hdfs-client.xml"
working-directory: _build/release
run: |
ctest -j 8 --output-on-failure --no-tests=error
ctest -j 8 --label-exclude cuda_driver --output-on-failure --no-tests=error
ubuntu-debug:
runs-on: 8-core-ubuntu
Expand Down
1 change: 1 addition & 0 deletions velox/experimental/wave/common/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ add_executable(
HashTestUtil.cpp)

add_test(velox_wave_common_test velox_wave_common_test)
set_tests_properties(velox_wave_common_test PROPERTIES LABELS cuda_driver)

target_link_libraries(
velox_wave_common_test
Expand Down
1 change: 1 addition & 0 deletions velox/experimental/wave/dwio/decode/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
add_executable(velox_wave_decode_test GpuDecoderTest.cu)

add_test(velox_wave_decode_test velox_wave_decode_test)
set_tests_properties(velox_wave_decode_test PROPERTIES LABELS cuda_driver)

target_link_libraries(
velox_wave_decode_test
Expand Down
2 changes: 1 addition & 1 deletion velox/experimental/wave/vector/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

add_executable(velox_wave_vector_test VectorTest.cpp)

add_test(veloxwave__vector_test velox_wave_vector_test)
add_test(veloxwave_vector_test velox_wave_vector_test)

target_link_libraries(
velox_wave_vector_test
Expand Down

0 comments on commit 93e8bda

Please sign in to comment.