Skip to content

Commit

Permalink
Add CUDA tests to release pipeline.
Browse files Browse the repository at this point in the history
These run in compatibility-checking mode, meaning that they run tests which
are expected to fail and ensure that these tests still fail. This takes
even longer than when not checking this, so these run only as part of the
release pipeline.

PiperOrigin-RevId: 692355383
  • Loading branch information
EtiennePerot authored and gvisor-bot committed Nov 2, 2024
1 parent 6adc072 commit 7897ec2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .buildkite/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,18 @@ steps:
- make cuda-tests
agents:
queue: gpu
- label: ":fish: CUDA tests (NOSUBMIT)"
# This is its own test rather than being part of the GPU tests,
# because it takes around 30 minutes to run.
parallelism: 32
timeout_in_minutes: 120
retry:
<<: *retry_settings
commands:
- make sudo TARGETS=//tools/gpu:main ARGS="install --latest" || cat /var/log/nvidia-installer.log
- make cuda-tests ARGS="--cuda_verify_compatibility=true"
agents:
queue: gpu
- <<: *common
<<: *source_test_continuous
label: ":screwdriver: All GPU Drivers Test"
Expand Down
13 changes: 13 additions & 0 deletions .buildkite/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,19 @@ steps:
- make gpu-all-tests
agents:
queue: gpu
- <<: *source_test_continuous
label: ":fish: CUDA tests"
# This is its own test rather than being part of the GPU tests,
# because it takes around 30 minutes to run.
parallelism: 32
timeout_in_minutes: 120
retry:
<<: *retry_settings
commands:
- make sudo TARGETS=//tools/gpu:main ARGS="install --latest" || cat /var/log/nvidia-installer.log
- make cuda-tests ARGS="--cuda_verify_compatibility=true"
agents:
queue: gpu
- <<: *common
label: ":screwdriver: All GPU Drivers Test"
commands:
Expand Down

0 comments on commit 7897ec2

Please sign in to comment.