-
Notifications
You must be signed in to change notification settings - Fork 195
/
Jenkinsfile
92 lines (89 loc) · 1.96 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env groovy
def init_git() {
sh "rm -rf *"
checkout scm
sh "git submodule update --recursive --init"
}
def kg_test_linux(backend, dev) {
init_git()
timeout(time: 20, unit: 'MINUTES') {
sh "bash tests/scripts/task_kg_test.sh ${backend} ${dev}"
}
}
pipeline {
agent any
stages {
stage("Lint Check") {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-lint"
}
}
steps {
init_git()
sh "bash tests/scripts/task_lint.sh"
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("App") {
parallel {
stage("Knowledge Graph CPU") {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:conda"
}
}
stages {
stage("Torch test") {
steps {
kg_test_linux("pytorch", "cpu")
}
}
stage("MXNet test") {
steps {
kg_test_linux("mxnet", "cpu")
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
stage("Knowledge Graph GPU") {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:conda"
args "--runtime nvidia"
}
}
stages {
stage("Torch test") {
steps {
kg_test_linux("pytorch", "gpu")
}
}
stage("MXNet test") {
steps {
kg_test_linux("mxnet", "gpu")
}
}
}
post {
always {
cleanWs disableDeferredWipeout: true, deleteDirs: true
}
}
}
}
}
}
}