Skip to content

Commit 29235f4

Browse files
authored
Disable tests that cause GC corruption on 1.10. (#2053)
[skip cuda] [skip special]
1 parent c0f0df3 commit 29235f4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ steps:
3030
- "1.10-nightly"
3131
- "nightly"
3232
adjustments:
33-
- with:
34-
julia: "1.10-nightly"
35-
soft_fail: true
3633
- with:
3734
julia: "nightly"
3835
soft_fail: true

test/libraries/cusparse/reduce.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using CUDA.CUSPARSE, SparseArrays
22

3-
if VERSION >= v"1.7"
3+
# XXX: these tests cause GC corruption on 1.10+ (see JuliaGPU/CUDA.jl#2027)
4+
if VERSION >= v"1.7" && VERSION < v"1.10-"
45

56
m,n = 5,6
67
p = 0.5

0 commit comments

Comments
 (0)