From 669431d0985586c87dc502c24caaae9b10ad4db3 Mon Sep 17 00:00:00 2001 From: denes Date: Mon, 7 Oct 2019 12:00:18 +0200 Subject: [PATCH] convert needs an '@' in front of file names. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c72083e..e778791 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { stage('Running catch2 tests') { steps { sh './performance_measuring_test > tests.txt' - sh 'convert -background black -fill white -pointsize 16 -font Courier label:tests.txt tests.png' + sh 'convert -background black -fill white -pointsize 16 -font Courier label:@tests.txt tests.png' archiveArtifacts artifacts: 'tests.png', fingerprint: true } }