Skip to content

Commit 72c2e39

Browse files
Disable junit archiving (#271)
Disable Junit report archiving for the time being
1 parent 993f9d6 commit 72c2e39

11 files changed

+33
-18
lines changed

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

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

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

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

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,11 @@ 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"
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"
115116

116117
sh "rm -rf clang-build clang-install host-compiler *.tar.gz"
117118
}

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

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

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

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

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

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

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

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ pipeline {
190190
always {
191191
// ToDo: Restore the issue scanner
192192
// scanForIssues tool: clang()
193-
junit 'test/results.xml'
193+
// junit 'test/results.xml'
194+
echo "Temporarily Skip Junit"
194195
}
195196
}
196197
}

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

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ 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'
136+
// junit 'test/results.xml'
137+
echo "Temporarily Skip Junit"
137138
}
138139
}
139140
stage('Test DWARF4') {
@@ -165,7 +166,8 @@ pipeline {
165166
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
166167
'''
167168
}
168-
junit 'test/results.xml'
169+
// junit 'test/results.xml'
170+
echo "Temporarily Skip Junit"
169171
}
170172
}
171173
stage('Test DWARF5') {
@@ -197,7 +199,8 @@ pipeline {
197199
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
198200
'''
199201
}
200-
junit 'test/results.xml'
202+
// junit 'test/results.xml'
203+
echo "Temporarily Skip Junit"
201204
}
202205
}
203206
stage('Build Clang 15.0.1') {
@@ -262,7 +265,8 @@ pipeline {
262265
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
263266
'''
264267
}
265-
junit 'test/results.xml'
268+
// junit 'test/results.xml'
269+
echo "Temporarily Skip Junit"
266270
}
267271
}
268272
stage('Build Clang 17.0.6') {
@@ -329,7 +333,8 @@ pipeline {
329333
python3 llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix test || echo "** check-lldb failed with errors"
330334
'''
331335
}
332-
junit 'test/results.xml'
336+
// junit 'test/results.xml'
337+
echo "Temporarily Skip Junit"
333338
}
334339
}
335340
}

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

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

zorg/jenkins/jobs/jobs/llvm-coverage

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ pipeline {
187187
always {
188188
// ToDo: Restore issue scanner
189189
//scanForIssues tool: clang()
190-
junit 'test/results.xml'
190+
// junit 'test/results.xml'
191+
echo "Temporarily Skip Junit"
191192
}
192193
success {
193194
script {

0 commit comments

Comments
 (0)