Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
olofkallander committed Nov 3, 2023
1 parent f7c277f commit c47dc48
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Jenkins/PRUnitTestRunner.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ void prRunner(String cmakeBuildType, String platform, String dockerTag) {
sh "docker/$platform/runtests.sh"
}
}
post {
failure {
emailext body: 'Test Message',
recipientProviders: [requestor()],
subject: 'Jenkins PR build failed',
to: ''
attachLog: true,
body: "Jenkins Build failed"
}
}
}

abortPreviousRunningBuilds()
Expand Down

0 comments on commit c47dc48

Please sign in to comment.