Skip to content

Commit cca5750

Browse files
Revert "Disable junit archiving (#271)"
The issue that motivated the initial commit was fixed. This reverts commit 72c2e39.
1 parent a4639a9 commit cca5750

11 files changed

+18
-33
lines changed

zorg/jenkins/jobs/jobs/clang-san-iossim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ pipeline {
109109
post {
110110
always {
111111
script {
112-
// junit 'clang-build/**/testresults-*.xunit.xml'
113-
echo "Temporarily Skip Junit"
112+
junit 'clang-build/**/testresults-*.xunit.xml'
114113
}
115114
}
116115
}

zorg/jenkins/jobs/jobs/clang-stage1-RA

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ pipeline {
114114
post {
115115
always {
116116
script {
117-
// junit "clang-build/**/testresults.xunit.xml"
118-
echo "Temporarily Skip Junit"
117+
junit "clang-build/**/testresults.xunit.xml"
119118
}
120119
}
121120
}

zorg/jenkins/jobs/jobs/clang-stage1-RA-expensive

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,10 @@ pipeline {
108108
// ToDo: Restore the issue scanner
109109
// scanForIssues tool: clang()
110110

111-
// junit allowEmptyResults: true, testResults: "clang-build/**/testresults.xunit.xml"
112-
// junit allowEmptyResults: true, testResults: "clang-build/asan-IOSSimX86_64Config.xunit.xml"
113-
// junit allowEmptyResults: true, testResults: "clang-build/asan-IOSSimI386Config.xunit.xml"
114-
// junit allowEmptyResults: true, testResults: "clang-build/tsan-IOSSimX86_64Config.xunit.xml"
115-
echo "Temporarily Skip Junit"
111+
junit allowEmptyResults: true, testResults: "clang-build/**/testresults.xunit.xml"
112+
junit allowEmptyResults: true, testResults: "clang-build/asan-IOSSimX86_64Config.xunit.xml"
113+
junit allowEmptyResults: true, testResults: "clang-build/asan-IOSSimI386Config.xunit.xml"
114+
junit allowEmptyResults: true, testResults: "clang-build/tsan-IOSSimX86_64Config.xunit.xml"
116115

117116
sh "rm -rf clang-build clang-install host-compiler *.tar.gz"
118117
}

zorg/jenkins/jobs/jobs/clang-stage1-cmake-RA-incremental

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ pipeline {
106106
post {
107107
always {
108108
script {
109-
// junit "clang-build/**/testresults.xunit.xml"
110-
echo "Temporarily Skip Junit"
109+
junit "clang-build/**/testresults.xunit.xml"
111110
}
112111
}
113112
}

zorg/jenkins/jobs/jobs/clang-stage2-Rthinlto

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ pipeline {
129129
post {
130130
always {
131131
script {
132-
// junit "clang-build/**/testresults.xunit.xml"
133-
echo "Temporarily Skip Junit"
132+
junit "clang-build/**/testresults.xunit.xml"
134133
}
135134
}
136135
}

zorg/jenkins/jobs/jobs/clang-stage2-cmake-RgSan

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ pipeline {
125125
post {
126126
always {
127127
script {
128-
// junit "clang-build/**/testresults.xunit.xml"
129-
echo "Temporarily Skip Junit"
128+
junit "clang-build/**/testresults.xunit.xml"
130129
}
131130
}
132131
}

zorg/jenkins/jobs/jobs/lldb-cmake-as

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ pipeline {
189189
always {
190190
// ToDo: Restore the issue scanner
191191
// scanForIssues tool: clang()
192-
// junit 'test/results.xml'
193-
echo "Temporarily Skip Junit"
192+
junit 'test/results.xml'
194193
}
195194
}
196195
}

zorg/jenkins/jobs/jobs/lldb-cmake-intel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,7 @@ pipeline {
202202
always {
203203
// ToDo: Restore the issue scanner
204204
// scanForIssues tool: clang()
205-
// junit 'test/results.xml'
206-
echo "Temporarily Skip Junit"
205+
junit 'test/results.xml'
207206
}
208207
}
209208
}

zorg/jenkins/jobs/jobs/lldb-cmake-matrix

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ pipeline {
133133
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
134134
'''
135135
}
136-
// junit 'test/results.xml'
137-
echo "Temporarily Skip Junit"
136+
junit 'test/results.xml'
138137
}
139138
}
140139
stage('Test DWARF4') {
@@ -166,8 +165,7 @@ pipeline {
166165
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
167166
'''
168167
}
169-
// junit 'test/results.xml'
170-
echo "Temporarily Skip Junit"
168+
junit 'test/results.xml'
171169
}
172170
}
173171
stage('Test DWARF5') {
@@ -199,8 +197,7 @@ pipeline {
199197
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
200198
'''
201199
}
202-
// junit 'test/results.xml'
203-
echo "Temporarily Skip Junit"
200+
junit 'test/results.xml'
204201
}
205202
}
206203
stage('Build Clang 15.0.1') {
@@ -265,8 +262,7 @@ pipeline {
265262
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
266263
'''
267264
}
268-
// junit 'test/results.xml'
269-
echo "Temporarily Skip Junit"
265+
junit 'test/results.xml'
270266
}
271267
}
272268
stage('Build Clang 17.0.6') {
@@ -333,8 +329,7 @@ pipeline {
333329
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
334330
'''
335331
}
336-
// junit 'test/results.xml'
337-
echo "Temporarily Skip Junit"
332+
junit 'test/results.xml'
338333
}
339334
}
340335
}

zorg/jenkins/jobs/jobs/lldb-cmake-sanitized

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ pipeline {
126126
always {
127127
// ToDo: Restore issue scanner
128128
// scanForIssues tool: clang()
129-
// junit 'test/results.xml'
130-
echo "Temporarily Skip Junit"
129+
junit 'test/results.xml'
131130
}
132131
}
133132
}

0 commit comments

Comments
 (0)