Skip to content

Commit c7184f4

Browse files
author
Katharine Hyatt
committed
Tweak Buildkite
1 parent 9972a65 commit c7184f4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ delete!(testsuite, "braidingtensor") # not part of the testsuite (see file heade
1010
# CUDA tests: only run if CUDA is functional
1111
using CUDA: CUDA
1212
CUDA.functional() || filter!(!startswith("cuda") first, testsuite)
13+
# AMDGPU tests: only run if AMDGPU is functional
1314
using AMDGPU
1415
AMDGPU.functional() || filter!(!startswith("amd") first, testsuite)
1516

1617
# On Buildkite (GPU CI runner): only run CUDA and AMDGPU tests
1718
if get(ENV, "BUILDKITE", "false") == "true"
18-
filter!(startswith("cuda") first, testsuite)
19-
filter!(startswith("amd") first, testsuite)
19+
filter!(startswith("cuda") first || startswith("amd") first , testsuite)
2020
end
2121

2222
# ChainRules / Mooncake: skip on Apple CI and on Julia prerelease builds

0 commit comments

Comments
 (0)