-
Notifications
You must be signed in to change notification settings - Fork 12
/
Jenkinsfile
192 lines (188 loc) · 8.91 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
pipeline{
agent none
options {
timeout(time: 2, unit: 'HOURS')
}
// triggers {
// cron('H H(0-7) * * *')
// }
stages {
stage('PRAJNA CI'){
parallel {
// 生成目录需要调整
// stage('x64-linux') {
// agent {
// dockerfile {
// filename 'ubuntu_dev.dockerfile'
// dir 'dockerfiles'
// //需要jenkins也用root权限启动, 目前使用其他权限会有很多问题, root权限存在极大的安全隐患
// args '-u root:root --network host'
// }
// }
// environment {
// CXX = 'clang++'
// CC = 'clang'
// BUILD_TYPE = 'debug'
// }
// stages {
// stage('env') {
// steps {
// sh 'uname -a'
// sh 'echo $USER'
// sh 'cmake --version'
// sh 'clang++ --version'
// sh 'pwd'
// sh 'git --version'
// // docker内存也需要设置代理, 上面设置了使用host网络
// sh 'git config --global http.proxy localhost:1087'
// // gnutls错误, 先这样设置吧
// sh 'git config --global http.postBuffer 1048576000'
// sh "git config --global --add safe.directory '*'"
// sh 'git config http.sslVerify false'
// }
// }
// stage('build') {
// steps {
// sh 'git config --global --list'
// sh './scripts/clone_submodules.sh --jobs=16 --depth=10'
// sh './scripts/configure.sh ${BUILD_TYPE} -DWITH_TLS=OFF -DPRAJNA_WITH_JUPYTER=ON'
// sh './scripts/build.sh ${BUILD_TYPE} install'
// }
// }
// stage('test') {
// steps {
// sh './scripts/test.sh ${BUILD_TYPE}'
// sh './scripts/test_examples.sh ${BUILD_TYPE}'
// }
// }
// }
// }
stage('x64-linux-nvgpu-debug') {
agent {
dockerfile {
filename 'ubuntu_dev_nvgpu.dockerfile'
dir 'dockerfiles'
label 'Sunny'
//需要jenkins也用root权限启动, 目前使用其他权限会有很多问题, root权限存在极大的安全隐患
args '--gpus all -u root:root --network host'
}
}
environment {
CXX = 'clang++'
CC = 'clang'
BUILD_TYPE = 'debug'
}
stages {
stage('env') {
steps {
sh 'uname -a'
sh 'echo $USER'
sh 'cmake --version'
sh 'clang++ --version'
sh 'nvidia-smi'
sh 'pwd'
sh 'git --version'
// docker内存也需要设置代理, 上面设置了使用host网络
sh 'git config --global http.proxy localhost:1087'
// gnutls错误, 先这样设置吧
sh 'git config --global http.postBuffer 1048576000'
sh "git config --global --add safe.directory '*'"
sh 'git config http.sslVerify false'
}
}
stage('build') {
steps {
sh 'git config --global --list'
sh './scripts/clone_submodules.sh --jobs=16 --depth=10'
sh './scripts/configure.sh ${BUILD_TYPE} -DWITH_TLS=OFF -DPRAJNA_WITH_JUPYTER=OFF'
sh './scripts/build.sh ${BUILD_TYPE} install'
// 需要安装llc
sh 'cd build_${BUILD_TYPE}/third_party/llvm-project/llvm/tools/llc && make llc -j && cp ../../bin/llc /usr/bin'
}
}
stage('test') {
steps {
sh './scripts/test.sh ${BUILD_TYPE}'
sh './scripts/test_examples.sh ${BUILD_TYPE}'
}
}
}
}
stage('x64-linux-nvgpu-release') {
agent {
dockerfile {
filename 'ubuntu_dev_nvgpu.dockerfile'
dir 'dockerfiles'
label 'Sunny'
//需要jenkins也用root权限启动, 目前使用其他权限会有很多问题, root权限存在极大的安全隐患
args '--gpus all -u root:root --network host'
}
}
environment {
CXX = 'clang++'
CC = 'clang'
BUILD_TYPE = 'release'
}
stages {
stage('env') {
steps {
sh 'uname -a'
sh 'echo $USER'
sh 'cmake --version'
sh 'clang++ --version'
sh 'nvidia-smi'
sh 'pwd'
sh 'git --version'
// docker内存也需要设置代理, 上面设置了使用host网络
sh 'git config --global http.proxy localhost:1087'
// gnutls错误, 先这样设置吧
sh 'git config --global http.postBuffer 1048576000'
sh "git config --global --add safe.directory '*'"
sh 'git config http.sslVerify false'
}
}
stage('build') {
steps {
sh 'git config --global --list'
sh './scripts/clone_submodules.sh --jobs=16 --depth=10'
sh './scripts/configure.sh ${BUILD_TYPE} -DPRAJNA_WITH_JUPYTER=ON -DPRAJNA_DISABLE_ASSERTS=ON'
sh './scripts/build.sh ${BUILD_TYPE} install'
// 需要安装llc
sh 'cd build_${BUILD_TYPE}/third_party/llvm-project/llvm/tools/llc && make llc -j && cp ../../bin/llc /usr/bin'
}
}
stage('test') {
steps {
sh './scripts/test.sh ${BUILD_TYPE}'
sh './scripts/test_examples.sh ${BUILD_TYPE}'
}
}
stage("leak-check") {
steps {
sh 'valgrind --leak-check=full --num-callers=10 --trace-children=yes ./scripts/test.sh ${BUILD_TYPE} --gtest_filter=*tensor_test'
}
}
}
}
}
}
}
// post {
// always {
// echo 'This will always run'
// }
// success {
// echo 'This will run only ifsuccessful'
// }
// failure {
// echo 'This will run only iffailed'
// }
// unstable {
// echo 'This will run only if th run was marked as unstable'
// }
// changed {
// echo 'This will run only if th state of the Pipeline has changed'
// echo 'For example, if thePipeline was previously failing bu is now successful'
// }
// }
}