We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f389f2b commit ebf5c70Copy full SHA for ebf5c70
test/runtests.jl
@@ -11,7 +11,7 @@ end
11
12
is_buildkite = parse(Bool, get(ENV, "BUILDKITE", "false"))
13
if is_buildkite
14
- test_group = "2" # if this is Buildkite, we only run group 2
+ test_group = "2" # only run group 2 on the GPU servers
15
else
16
test_group = get(ENV, "TULLIO_TEST_GROUP", "all")
17
end
@@ -20,9 +20,11 @@ end
20
if test_group in ["all", "1"]
21
include("group-1.jl")
22
23
-if test_group in ["all", "2"]
+
24
+if test_group in ["all", "2"] && VERSION <= v"1.6" # KA testing time-out https://github.com/JuliaGPU/KernelAbstractions.jl/issues/155
25
include("group-2.jl")
26
-if test_group in ["all", "3"]
27
28
+if test_group in ["all", "3"] && VERSION <= v"1.6" # LV issue with Vararg changes
29
include("group-3.jl")
30
0 commit comments