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
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,6 @@ jobs:
# Outline flat layouts for cuda scan.
FLAT_LAYOUT_INLINE_ARRAY_NODE: true
run: |
# Build with full debug info first (helps with caching)
cargo +$NIGHTLY_TOOLCHAIN build --locked -p vortex-cuda -p vortex-file -p vortex-test-e2e-cuda --all-features --target x86_64-unknown-linux-gnu
# Run tests with sanitizers and debug output
cargo +$NIGHTLY_TOOLCHAIN nextest run \
--locked \
-p vortex-file \
Expand All @@ -541,20 +538,20 @@ jobs:
- name: CUDA - memcheck
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: compute-sanitizer --tool memcheck --leak-check=full --error-exitcode 1
run: cargo test -p vortex-cuda
run: cargo +$NIGHTLY_TOOLCHAIN test --locked -p vortex-cuda --target x86_64-unknown-linux-gnu
# TODO(joe): try to re-enable, This is hanging in CI.
# - name: CUDA - racecheck
# env:
# CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: compute-sanitizer --tool racecheck --error-exitcode 1
# run: cargo test -p vortex-cuda
# run: cargo +$NIGHTLY_TOOLCHAIN test --locked -p vortex-cuda --target x86_64-unknown-linux-gnu
- name: CUDA - synccheck
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: compute-sanitizer --tool synccheck --error-exitcode 1
run: cargo test -p vortex-cuda
run: cargo +$NIGHTLY_TOOLCHAIN test --locked -p vortex-cuda --target x86_64-unknown-linux-gnu
- name: CUDA - initcheck
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: compute-sanitizer --tool initcheck --error-exitcode 1
run: cargo test -p vortex-cuda
run: cargo +$NIGHTLY_TOOLCHAIN test --locked -p vortex-cuda --target x86_64-unknown-linux-gnu
- name: Build cudf test library
run: cargo +$NIGHTLY_TOOLCHAIN build --locked -p vortex-test-e2e-cuda --target x86_64-unknown-linux-gnu
- name: Download and run cudf-test-harness
Expand Down
Loading