From 9bf84a7a3f9bc22278cb0bbf77c56802b3ed8414 Mon Sep 17 00:00:00 2001 From: valentinab25 Date: Wed, 19 Jun 2024 10:47:42 +0300 Subject: [PATCH] test: remove link from status message Refs #2262124 --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ec08188..d2ae4ac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -44,11 +44,11 @@ pipeline { sh """mv temp mrs.developer.json""" sh """cat mrs.developer.json | jq '.["'$GIT_NAME'"]' """ sh """yarn""" - sh "make develop" - 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" + sh """make develop""" + 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: 'result.txt'), conclusion: "${currentBuild.currentResult}", detailsURL: "${env.BUILD_URL}display/redirect"