Skip to content

Commit bde5342

Browse files
committed
[I/Y-Build] Fix extension of test overview file and counting of tests
and fix the link to tests in the build announcement mail. Follow-up on - #3554
1 parent c47d759 commit bde5342

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

JenkinsJobs/AutomatedTests/integrationTests.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pipeline {
128128

129129
# Download the result summary directly to the storage server
130130
ssh genie.releng@projects-storage.eclipse.org \
131-
curl --fail --location --output "${remoteResultsDirectory}/${JOB_BASE_NAME}.xml" "${BUILD_URL}/testReport/api/json?tree=failCount,passCount,skipCount,duration"
131+
curl --fail --location --output "${remoteResultsDirectory}/${JOB_BASE_NAME}.json" "${BUILD_URL}/testReport/api/json?tree=failCount,passCount,skipCount,duration"
132132
fi
133133
'''
134134
}

JenkinsJobs/Builds/build.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ pipeline {
677677
https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}
678678

679679
Build logs and/or test results (eventually):
680-
https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/testResults.php
680+
https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/tests.html
681681
""" + (env.COMPARATOR_ERRORS_SUBJECT == '' ? '' : """
682682
Check unanticipated comparator messages:
683683
https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt

JenkinsJobs/Releng/updateIndex.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pipeline {
4949
# Count elements in list of expected tests
5050
grep "^TEST_CONFIGURATIONS_EXPECTED" \${drop}/buildproperties.properties | awk -F= "{print \\\$2}" | grep -o "ep[0-9A-Za-z]*-unit-" | wc -l
5151
# Count number of test-result overview files
52-
find \${drop}/testresults -maxdepth 1 -type f -name "ep*-unit-*.json" | wc -l
52+
find \${drop}/testresults -maxdepth 1 -type f -name "ep*-unit-*.json" ! -name "ep*-unit-*-summary.json" | wc -l
5353
# Count number of old-style test-result overview files (still relevant for not yet archived releases)
5454
find \${drop}/testresults -maxdepth 1 -type f -name "ep*-unit-*.xml" | wc -l
5555
if [ -f \${drop}/index.html ]; then

0 commit comments

Comments
 (0)