forked from ROCm/rocALUTION
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
246 lines (193 loc) · 8.31 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/env groovy
// This shared library is available at https://github.com/ROCmSoftwarePlatform/rocJENKINS/
@Library('rocJenkins') _
// This is file for internal AMD use.
// If you are interested in running your own Jenkins, please raise a github issue for assistance.
import com.amd.project.*
import com.amd.docker.*
////////////////////////////////////////////////////////////////////////
// Mostly generated from snippet generator 'properties; set job properties'
// Time-based triggers added to execute nightly tests, eg '30 2 * * *' means 2:30 AM
properties([
pipelineTriggers([cron('30 22 * * *'), [$class: 'PeriodicFolderTrigger', interval: '5m']]),
buildDiscarder(logRotator(
artifactDaysToKeepStr: '',
artifactNumToKeepStr: '',
daysToKeepStr: '',
numToKeepStr: '10')),
disableConcurrentBuilds(),
[$class: 'CopyArtifactPermissionProperty', projectNames: '*']
])
////////////////////////////////////////////////////////////////////////
import java.nio.file.Path;
rocALUTIONCIhost:
{
def rocalution = new rocProject('rocalution_host')
// customize for project
rocalution.paths.build_command = './install.sh -c --host'
rocalution.compiler.compiler_name = 'c++'
rocalution.compiler.compiler_path = 'c++'
// Define test architectures, optional rocm version argument is available
def nodes = new dockerNodes(['dkms'], rocalution)
boolean formatCheck = true
def compileCommand =
{
platform, project->
project.paths.construct_build_prefix()
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
LD_LIBRARY_PATH=/opt/rocm/hcc/lib CXX=${project.compiler.compiler_path} ${project.paths.build_command}
"""
platform.runCommand(this, command)
}
def testCommand =
{
platform, project->
String sudo = auxiliary.sudo(platform.jenkinsLabel)
def gfilter = auxiliary.isJobStartedByTimer() ? "*nightly*" : "*checkin*"
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}/build/release/clients/staging
${sudo} LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG ./rocalution-test --gtest_output=xml --gtest_color=yes #--gtest_filter=${gfilter}-*known_bug*
"""
platform.runCommand(this, command)
junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml"
}
def packageCommand =
{
platform, project->
def command = """
set -x
cd ${project.paths.project_build_prefix}/build/release
make package
mkdir -p package
mv *.deb package/
dpkg -c package/*.deb
"""
platform.runCommand(this, command)
platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.deb""")
}
buildProject(rocalution, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand)
}
rocALUTIONCImpi:
{
def rocalution = new rocProject('rocalution_mpi')
// customize for project
rocalution.paths.build_command = './install.sh -c --host --mpi --no-openmp'
rocalution.compiler.compiler_name = 'c++'
rocalution.compiler.compiler_path = 'c++'
// Define test architectures, optional rocm version argument is available
def nodes = new dockerNodes(['dkms'], rocalution)
boolean formatCheck = true
def compileCommand =
{
platform, project->
project.paths.construct_build_prefix()
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
LD_LIBRARY_PATH=/opt/rocm/hcc/lib CXX=${project.compiler.compiler_path} ${project.paths.build_command}
"""
platform.runCommand(this, command)
}
def testCommand =
{
platform, project->
String sudo = auxiliary.sudo(platform.jenkinsLabel)
def gfilter = auxiliary.isJobStartedByTimer() ? "*nightly*" : "*checkin*"
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}/build/release/clients/staging
${sudo} LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG ./rocalution-test --gtest_output=xml --gtest_color=yes #--gtest_filter=${gfilter}-*known_bug*
"""
platform.runCommand(this, command)
junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml"
}
def packageCommand =
{
platform, project->
def command = """
set -x
cd ${project.paths.project_build_prefix}/build/release
make package
mkdir -p package
mv *.deb package/
dpkg -c package/*.deb
"""
platform.runCommand(this, command)
platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.deb""")
}
buildProject(rocalution, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand)
}
rocALUTIONCI:
{
def rocalution = new rocProject('rocALUTION')
// customize for project
rocalution.paths.build_command = './install.sh -c'
rocalution.compiler.compiler_name = 'c++'
rocalution.compiler.compiler_path = 'c++'
// Define test architectures, optional rocm version argument is available
def nodes = new dockerNodes(['gfx900 && ubuntu', 'gfx906 && centos7', 'gfx906 && sles'], rocalution)
boolean formatCheck = true
def compileCommand =
{
platform, project->
project.paths.construct_build_prefix()
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
LD_LIBRARY_PATH=/opt/rocm/hcc/lib CXX=${project.compiler.compiler_path} ${project.paths.build_command}
"""
platform.runCommand(this, command)
}
def testCommand =
{
platform, project->
String sudo = auxiliary.sudo(platform.jenkinsLabel)
def gfilter = auxiliary.isJobStartedByTimer() ? "*nightly*" : "*checkin*"
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}/build/release/clients/staging
${sudo} LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG ./rocalution-test --gtest_output=xml --gtest_color=yes #--gtest_filter=${gfilter}-*known_bug*
"""
platform.runCommand(this, command)
junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml"
}
def packageCommand =
{
platform, project->
def command
if(platform.jenkinsLabel.contains('centos'))
{
command = """
set -x
cd ${project.paths.project_build_prefix}/build/release
make package
mkdir -p package
mv *.rpm package/
rpm -qlp package/*.rpm
"""
platform.runCommand(this, command)
platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.rpm""")
}
else if(platform.jenkinsLabel.contains('hip-clang') || platform.jenkinsLabel.contains('sles'))
{
packageCommand = null
}
else
{
command = """
set -x
cd ${project.paths.project_build_prefix}/build/release
make package
mkdir -p package
mv *.deb package/
dpkg -c package/*.deb
"""
platform.runCommand(this, command)
platform.archiveArtifacts(this, """${project.paths.project_build_prefix}/build/release/package/*.deb""")
}
}
buildProject(rocalution, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand)
}