Skip to content

Commit b54abbd

Browse files
add buildkite workflow
1 parent 021e937 commit b54abbd

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.buildkite/pipeline.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
steps:
2+
- label: "GNN CUDA"
3+
plugins:
4+
- JuliaCI/julia#v1:
5+
version: "1"
6+
- JuliaCI/julia-coverage#v1:
7+
dirs:
8+
- GraphNeuralNetworks/src
9+
command: |
10+
julia --color=yes --depwarn=yes --project=monorepo -e '
11+
import Pkg
12+
Pkg.Registry.update()
13+
dev_pkgs = Pkg.PackageSpec[]
14+
for pkg in ("GNNGraphs", "GNNlib", "GraphNeuralNetworks")
15+
push!(dev_pkgs, Pkg.PackageSpec(path=pkg));
16+
end
17+
Pkg.develop(dev_pkgs)
18+
Pkg.add(["CUDA", "cuDNN"])
19+
Pkg.test("GraphNeuralNetworks")'
20+
agents:
21+
queue: "juliagpu"
22+
cuda: "*"
23+
env:
24+
GNN_TEST_CUDA: "true"
25+
GNN_TEST_CPU: "false"
26+
- timeout_in_minutes: 60

0 commit comments

Comments
 (0)