Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Commit 264bc22

Browse files
authored
Reorder checkout and clone
so that we don't pull in transitive dependencies
1 parent c640139 commit 264bc22

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/runtests.jl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ if (
33
get(ENV, "APPVEYOR", "") == "true" ||
44
get(ENV, "CI", "") == "true"
55
)
6+
Pkg.clone("OpenCL")
7+
Pkg.clone("Suger")
68
Pkg.clone("Transpiler")
7-
Pkg.clone("Sugar")
89
Pkg.clone("GPUArrays")
9-
Pkg.clone("OpenCL")
1010

11-
Pkg.checkout("Transpiler", "sd/struct_buffer")
11+
Pkg.checkout("OpenCL", "sd/pointerfree")
1212
Pkg.checkout("Sugar", "sd/struct_buffer")
13+
Pkg.checkout("Transpiler", "sd/struct_buffer")
1314
Pkg.checkout("GPUArrays", "sd/abstractgpu")
14-
Pkg.checkout("OpenCL", "sd/pointerfree")
15+
1516
end
1617

1718
using CLArrays

0 commit comments

Comments
 (0)