Skip to content

Commit

Permalink
Exclude evaluation- from daily build status (#745)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Jul 3, 2023
1 parent 56e28ba commit 5e0e9c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/nightly_build_and_test_stats.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ node('worker') {
def trssBuildNames = sh(returnStdout: true, script: "wget -q -O - ${trssUrl}/api/getTopLevelBuildNames?type=Test")
def buildNamesJson = new JsonSlurper().parseText(trssBuildNames)
buildNamesJson.each { build ->
// Is it a build Pipeline?
if (build._id.buildName.contains('-pipeline')) {
// Is it a build Pipeline? Excluding "evaluation-" pipelines
if (build._id.buildName.contains('-pipeline') && !build._id.buildName.startsWith('evaluation-')) {
echo "Pipeline ${build._id.buildName}"
def pipelineName = build._id.buildName

Expand Down

0 comments on commit 5e0e9c7

Please sign in to comment.