forked from CTSRD-CHERI/cheribsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
265 lines (251 loc) · 12.9 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
@Library('ctsrd-jenkins-scripts') _
class GlobalVars { // "Groovy"
public static boolean archiveArtifacts = false
public static boolean isTestSuiteJob = false
public static List<String> selectedPurecapKernelArchitectures = []
}
echo("JOB_NAME='${env.JOB_NAME}', JOB_BASE_NAME='${env.JOB_BASE_NAME}'")
def rateLimit = rateLimitBuilds(throttle: [count: 1, durationName: 'hour', userBoost: true])
if (env.JOB_NAME.contains("CheriBSD-testsuite") ||
(env.CHANGE_ID && pullRequest.labels.contains('run-full-testsuite'))) {
GlobalVars.isTestSuiteJob = true
// This job takes a long time to run (approximately 20 hours) so limit it to twice a week
rateLimit = rateLimitBuilds(throttle: [count: 2, durationName: 'week', userBoost: true])
echo("RUNNING FREEBSD TEST SUITE")
}
// Set job properties:
def jobProperties = [
[$class: 'GithubProjectProperty', displayName: '', projectUrlStr: 'https://github.com/CTSRD-CHERI/cheribsd/'],
copyArtifactPermission('*'), // Downstream jobs (may) need the kernels/disk images
rateLimit,
]
// Don't archive sysroot/disk image/kernel images for pull requests and non-default branches:
def archiveBranches = ['main', 'master', 'dev']
if (!env.CHANGE_ID && archiveBranches.contains(env.BRANCH_NAME)) {
if (!GlobalVars.isTestSuiteJob) {
// Don't archive disk images for the test suite job
GlobalVars.archiveArtifacts = true
}
// For branches other than the master/main branch, only keep the last two artifacts to save disk space
if (env.BRANCH_NAME != 'main' && env.BRANCH_NAME != 'master') {
jobProperties.add(buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '2')))
}
}
// Add an architecture selector for manual builds
def allArchitectures = [
"aarch64", "amd64",
"morello-hybrid", "morello-purecap",
"riscv64", "riscv64-hybrid", "riscv64-purecap"
]
jobProperties.add(parameters([
text(defaultValue: allArchitectures.join('\n'),
description: 'The architectures (cheribuild suffixes) to build for (one per line)',
name: 'architectures'),
text(defaultValue: ["riscv64-hybrid", "riscv64-purecap", "morello-hybrid", "morello-purecap"].join('\n'),
description: 'The architectures (cheribuild suffixes) to build a purecap kernel for (one per line)',
name: 'purecapKernelArchitectures'),
]))
// Set the default job properties (work around properties() not being additive but replacing)
setDefaultJobProperties(jobProperties)
jobs = [:]
GlobalVars.selectedPurecapKernelArchitectures = params.purecapKernelArchitectures.split('\n')
def runTestStep(params, String testSuffix, String suffix, testExtraArgs, extraArgs) {
testExtraArgs.add("--test-output-dir=\$WORKSPACE/test-results/${testSuffix}")
sh label: "Run ${testSuffix} tests in QEMU", script: """
rm -rf test-results/${testSuffix} && mkdir -p test-results/${testSuffix}
# The test script returns 2 if the tests step is unstable, any other non-zero exit code is a fatal error
exit_code=0
./cheribuild/jenkins-cheri-build.py --test run-${suffix} '--test-extra-args=${testExtraArgs.join(" ")}' ${params.extraArgs} ${extraArgs.join(" ")} --test-ssh-key \$WORKSPACE/id_ed25519.pub || exit_code=\$?
if [ \${exit_code} -eq 2 ]; then
echo "Test script encountered a non-fatal error - probably some of the tests failed."
elif [ \${exit_code} -ne 0 ]; then
echo "Test script got fatal error: exit code \${exit_code}"
exit \${exit_code}
fi
find test-results
"""
def summary = junitReturnCurrentSummary allowEmptyResults: false, keepLongStdio: true,
testResults: "test-results/${testSuffix}/*.xml"
def testResultMessage = "Test summary: ${summary.totalCount}, Failures: ${summary.failCount}, Skipped: ${summary.skipCount}, Passed: ${summary.passCount}"
echo("${testSuffix}: ${testResultMessage}")
if (summary.passCount == 0 || summary.totalCount == 0) {
params.statusFailure("No tests successful? ${testResultMessage}")
} else if (summary.failCount != 0) {
// Note: Junit set should have set stage/build status to unstable already, but we still need to set
// the per-configuration status, since Jenkins doesn't have a build result for each parallel branch.
params.statusUnstable("Unstable test results: ${testResultMessage}")
// If there were test failures, we archive the JUnitXML file to simplify debugging
archiveArtifacts allowEmptyArchive: true, artifacts: "test-results/${testSuffix}/*.xml", onlyIfSuccessful: false
}
}
def buildImage(params, String suffix) {
stage("Building disk images") {
sh label: "Building full disk image",
script: "./cheribuild/jenkins-cheri-build.py --build disk-image-${suffix} ${params.extraArgs}"
// No need for minimal images when running the testsuite
if (!GlobalVars.isTestSuiteJob) {
sh label: "Building minimal disk image",
script: "./cheribuild/jenkins-cheri-build.py --build disk-image-minimal-${suffix} ${params.extraArgs}"
}
}
// No need for MFS_ROOT kernels when running the testsuite
if (!GlobalVars.isTestSuiteJob && suffix.startsWith('riscv64')) {
stage("Building MFS_ROOT kernels") {
sh label: "Building MFS_ROOT disk image",
script: "./cheribuild/jenkins-cheri-build.py --build disk-image-mfs-root-${suffix} ${params.extraArgs}"
sh label: "Building MFS_ROOT kernels",
script: "./cheribuild/jenkins-cheri-build.py --build cheribsd-mfs-root-kernel-${suffix} --cheribsd/build-bench-kernels --cheribsd/build-fpga-kernels ${params.extraArgs}"
// Move MFS_ROOT kernels into tarball/ so they aren't deleted
sh "mv -fv kernel-${suffix}* tarball/"
}
}
}
def runTests(params, String suffix) {
def testExtraArgs = ['--no-timestamped-test-subdir']
if (GlobalVars.isTestSuiteJob) {
testExtraArgs += [
'--kyua-tests-files', '/usr/tests/Kyuafile',
'--no-run-cheribsdtest', // only run kyua tests
]
} else {
// Run a small subset of tests to check that we didn't break running tests (since the full testsuite takes too long)
testExtraArgs += ['--kyua-tests-files', '/usr/tests/bin/cat/Kyuafile']
}
stage("Test setup") {
// copy qemu archive and run directly on the host
dir("qemu-${params.buildOS}") { deleteDir() }
copyArtifacts projectName: 'qemu/qemu-cheri', filter: "qemu-${params.buildOS}/**", target: '.',
fingerprintArtifacts: false
sh label: 'generate SSH key',
script: 'test -e $WORKSPACE/id_ed25519 || ssh-keygen -t ed25519 -N \'\' -f $WORKSPACE/id_ed25519 < /dev/null'
sh 'find qemu* && ls -lah'
}
// Run test configurations in parallel (if there is be more than one).
if (GlobalVars.selectedPurecapKernelArchitectures.contains(suffix)) {
def testSteps = [:]
testSteps["Test ${suffix} hybrid kernel"] = { ->
runTestStep(params, "${suffix}-hybrid-kernel", suffix, testExtraArgs,
["--run-${suffix}/kernel-abi hybrid"])
}
testSteps["Test ${suffix} purecap kernel"] = { ->
runTestStep(params, "${suffix}-purecap-kernel", suffix, testExtraArgs,
["--run-${suffix}/kernel-abi purecap"])
}
testSteps.failFast = false
parallel testSteps
} else {
// Otherwise run it directly here in a stage() instead of parallel() to improve
// the Jenkins visualization.
stage("Test ${suffix}") {
runTestStep(params, "${suffix}", suffix, testExtraArgs, [])
}
}
}
def buildImageAndRunTests(params, String suffix) {
buildImage(params, suffix)
runTests(params, suffix)
maybeArchiveArtifacts(params, suffix)
}
def maybeArchiveArtifacts(params, String suffix) {
if (GlobalVars.archiveArtifacts) {
if (GlobalVars.isTestSuiteJob) {
error("Should not happen!")
}
stage("Archiving artifacts") {
// Archive disk image
sh label: 'Compress kernel and images', script: """
rm -fv *.img *.xz kernel*
mv -v tarball/rootfs/boot/kernel/kernel tarball/kernel
mv -v tarball/*.img tarball/kernel* .
# Use xz -T0 to speed up compression by using multiple threads
xz -T0 *.img kernel*
"""
// Create sysroot archive (this is installed to cherisdk rather than the tarball)
// Seems like some Java versions require write permissions to the .xz files:
// java.nio.file.AccessDeniedException: /usr/local/jenkins/jobs/CheriBSD-pipeline/branches/PR-616/builds/14/archive/kernel.xz
// at sun.nio.fs.UnixException.translateToIOException(UnixException.java:84)
// at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)
// at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)
// at sun.nio.fs.UnixFileSystemProvider.newByteChannel(UnixFileSystemProvider.java:214)
// at java.nio.file.spi.FileSystemProvider.newOutputStream(FileSystemProvider.java:434)
// at java.nio.file.Files.newOutputStream(Files.java:216)
sh label: 'Create sysroot archive', script: """
./cheribuild/jenkins-cheri-build.py cheribsd-sysroot-${suffix} --keep-install-dir --build \
--cheribsd/install-dir=\${WORKSPACE}/tarball/rootfs \
--cheribsd-sysroot/install-dir \${WORKSPACE}/tarball/sysroot
rm -f cheribsd-sysroot.tar.xz
# Cheribuild prior to https://github.com/CTSRD-CHERI/cheribuild/pull/180
# created a .tar.gz archive, newer versions create a tar.xz archive.
# Use a glob to handle both cases.
# XXX: Replace .* with .xz once the cheribuild PR has been merged
mv tarball/sysroot-${suffix}.tar.* cheribsd-sysroot.tar.xz
rm -rf tarball artifacts-*
chmod +w *.xz
mkdir -p "artifacts-${suffix}"
mv -v *.xz "artifacts-${suffix}"
ls -la "artifacts-${suffix}/"
"""
archiveArtifacts allowEmptyArchive: false,
artifacts: "artifacts-${suffix}/cheribsd-sysroot.tar.xz, artifacts-${suffix}/*.img.xz, artifacts-${suffix}/kernel*.xz",
fingerprint: true, onlyIfSuccessful: true
}
}
}
// Work around for https://issues.jenkins.io/browse/JENKINS-46941
// Jenkins appears to use the last selected manual override for automatically triggered builds.
// Therefore, only read the parameter value for manually-triggered builds.
def selectedArchitectures = isManualBuild() ? params.architectures.split('\n') : allArchitectures
echo("Selected architectures: ${selectedArchitectures}")
selectedArchitectures.each { suffix ->
String name = "cheribsd-${suffix}"
jobs[suffix] = { ->
def extraBuildOptions = '-s'
if (GlobalVars.isTestSuiteJob) {
// Enable additional debug checks when running the testsuite
extraBuildOptions += ' -DMALLOC_DEBUG'
}
def cheribuildArgs = [
"'--cheribsd/build-options=${extraBuildOptions}'",
'--cheribsd/default-kernel-abi=hybrid',
'--keep-install-dir',
'--install-prefix=/rootfs',
'--cheribsd/build-tests',
'--cheribsd/build-bench-kernels',
]
if (GlobalVars.isTestSuiteJob) {
cheribuildArgs.add('--cheribsd/debug-info')
} else {
cheribuildArgs.add('--cheribsd/no-debug-info')
}
if (GlobalVars.selectedPurecapKernelArchitectures.contains(suffix)) {
cheribuildArgs.add('--cheribsd/build-alternate-abi-kernels')
}
cheribuildProject(target: "cheribsd-${suffix}", architecture: suffix,
extraArgs: cheribuildArgs.join(" "),
skipArchiving: true, skipTarball: true,
sdkCompilerOnly: true,
// We only need clang not the CheriBSD sysroot since we are building that.
customGitCheckoutDir: 'cheribsd',
gitHubStatusContext: GlobalVars.isTestSuiteJob ? "testsuite/${suffix}" : "ci/${suffix}",
// Delete stale compiler/sysroot
beforeBuild: { params ->
dir('cherisdk') { deleteDir() }
sh label: 'Deleting outputs from previous builds',
script: 'rm -rfv artifacts-* tarball kernel*'
},
/* Custom function to run tests since --test will not work (yet) */
runTests: false,
afterBuild: { params -> buildImageAndRunTests(params, suffix) })
}
}
boolean runParallel = true
echo("Running jobs in parallel: ${runParallel}")
if (runParallel) {
jobs.failFast = false
parallel jobs
} else {
jobs.each { key, value ->
echo("RUNNING ${key}")
value()
}
}