diff --git a/Jenkinsfile b/Jenkinsfile index f9a73c37..6be343f3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,11 +31,16 @@ pipeline { colcon test-result ''' } + post { + always { + junit 'build/**/test_results/**/*.xml' + } + } } } post { always { - junit 'build/**/test_results/**/*.xml' + cleanWs() script { notifyBitbucket() }