From 3e4b14045f1f6855bb2b8799e45623d07f78ed35 Mon Sep 17 00:00:00 2001 From: Reiner Jung <reiner.jung@email.uni-kiel.de> Date: Sat, 28 Nov 2020 20:24:17 +0100 Subject: [PATCH] Added missing steps --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c1ed13..aa8ed2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -50,9 +50,11 @@ pipeline { stage('Upload') { agent { label 'build-node4' } - sshagent(credentials: ['kieker-irl-key']) { - sh 'sftp -i ${KEYSTORE} ${UPDATE_SITE_URL}' - sh '${BASE_DIR}/compile-results/bin/compile-results "${BASE_DIR}/results-kieker/results-text.csv" "${BASE_DIR}/all-results.json"' + steps { + sshagent(credentials: ['kieker-irl-key']) { + sh 'sftp -i ${KEYSTORE} ${UPDATE_SITE_URL}' + sh '${BASE_DIR}/compile-results/bin/compile-results "${BASE_DIR}/results-kieker/results-text.csv" "${BASE_DIR}/all-results.json"' + } } post { cleanup { -- GitLab