-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathJenkinsfile.junit-uploader
More file actions
72 lines (64 loc) · 2.07 KB
/
Jenkinsfile.junit-uploader
File metadata and controls
72 lines (64 loc) · 2.07 KB
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
#!/usr/bin/env groovy
/*
* Copyright (C) 2026 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
pipeline {
agent { label 'canvas-docker' }
options {
ansiColor('xterm')
timestamps()
}
stages {
stage('Upload Junit Results') {
steps {
script {
def sourceParts = env.SOURCE.split('/')
def sourceBuildNumber = sourceParts[-1]
def sourceJobName = sourceParts[0..-2].join('/')
echo "=== Copying artifacts from ${sourceJobName} #${sourceBuildNumber}"
copyArtifacts(
filter: 'tmp/*/rspec_results.tgz',
optional: false,
projectName: sourceJobName,
selector: specific(sourceBuildNumber),
)
sh """
ls tmp/*/rspec_results.tgz | xargs -n1 tar xf
touch tmp/*_rspec_results/**/*.xml
"""
junit allowEmptyResults: true, testResults: "tmp/*_rspec_results/results/*.xml", skipMarkingBuildUnstable: true
}
}
}
}
post {
success {
slackSend(
channel: '#canvas_builds-noisy',
color: 'good',
message: "${env.JOB_NAME} <${env.BUILD_URL}|#${env.BUILD_NUMBER}> for ${env.SOURCE} uploaded junit results."
)
}
failure {
slackSend(
channel: '#canvas_builds-noisy',
color: 'danger',
message: ":alert: ${env.JOB_NAME} <${env.BUILD_URL}|#${env.BUILD_NUMBER}> for ${env.SOURCE} failed to upload junit results."
)
}
}
}