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 021e937 commit b54abbdCopy full SHA for b54abbd
.buildkite/pipeline.yml
@@ -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