From 62129cfb9c7db94f902c58dc0122fc4461dd2027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zi=C4=99tkiewicz?= Date: Mon, 19 Apr 2021 11:02:16 +0200 Subject: [PATCH] Add archiving artifacts --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7935c36..602e6fe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,9 +3,10 @@ pipeline { stages { stage('Test') { steps { - sh 'make --version' + sh 'make --version > make.log' sh 'sclite --help || true' echo "Experimenting!" + archiveArtifacts 'make.log' } } }