Skip to content

Commit af0aa2c

Browse files
authored
Don't run CPU tests on AMDGPU CI machines (#542)
1 parent 6d98fe7 commit af0aa2c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ steps:
1414
queue: "juliagpu"
1515
cuda: "*"
1616
env:
17+
JULIA_NUM_THREADS: 4
1718
NNLIB_TEST_CUDA: "true"
18-
NNLIB_TEST_CPU: "false"
19+
NNLIB_TEST_CPU: "true" # Could be useful to uncover multithreading related issues
20+
# Buildkite workers have more threads.
1921
if: build.message !~ /\[skip tests\]/
2022
timeout_in_minutes: 180
2123
matrix:
@@ -34,6 +36,7 @@ steps:
3436
- JuliaCI/julia#v1:
3537
version: "1"
3638
- JuliaCI/julia-test#v1:
39+
test_args: "--quickfail"
3740
- JuliaCI/julia-coverage#v1:
3841
codecov: true
3942
dirs:
@@ -49,8 +52,7 @@ steps:
4952
JULIA_AMDGPU_HIP_MUST_LOAD: "1"
5053
JULIA_AMDGPU_DISABLE_ARTIFACTS: "1"
5154
NNLIB_TEST_AMDGPU: "true"
52-
NNLIB_TEST_CPU: "true" # Could be useful to uncover multithreading related issues
53-
# Buildkite workers have more threads.
55+
NNLIB_TEST_CPU: "false"
5456
JULIA_NUM_THREADS: 4
5557

5658
- label: "Benchmarks"

0 commit comments

Comments
 (0)