diff --git a/Jenkinsfile b/Jenkinsfile index 20a6e43..ec08188 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,8 +48,9 @@ pipeline { sh "make install" sh "make build" sh "set -o pipefail; yarn bundlewatch --config .bundlewatch.config.json | tee checkresult.txt" + sh "cat checkresult.txt | grep -v "https://service.bundlewatch.io/results" > result.txt" publishChecks name: "Bundlewatch on ${env.FRONTEND_NAME}", title: "Bunde size check on ${env.FRONTEND_NAME}", summary: "Result of bundlewatch run on ${env.FRONTEND_NAME}", - text: readFile(file: 'checkresult.txt'), conclusion: "${currentBuild.currentResult}", + text: readFile(file: 'result.txt'), conclusion: "${currentBuild.currentResult}", detailsURL: "${env.BUILD_URL}display/redirect" }