From c762e0b9d4f9fdd911a7dd339ca91684cc769f59 Mon Sep 17 00:00:00 2001 From: Reiner Jung <reiner.jung@email.uni-kiel.de> Date: Wed, 2 Dec 2020 14:19:59 +0100 Subject: [PATCH] Updated Jenkinsfile to support the two additional result files. --- Jenkinsfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2e8f4d5..743c775 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,15 +53,11 @@ pipeline { sshagent(credentials: ['kieker-irl-key']) { sh ''' cd ${BASE_DIR} - ls sftp -oNoHostAuthenticationForLocalhost=yes -oStrictHostKeyChecking=no -oUser=repo -F /dev/null -i ${KEYSTORE} ${UPDATE_SITE_URL}/all-results.json - cat all-results.json - ls compile-results/bin/compile-results results-kieker/results-text.csv all-results.json - ls - cat all-results.json echo "put all-results.json" | sftp -oNoHostAuthenticationForLocalhost=yes -oStrictHostKeyChecking=no -oUser=repo -F /dev/null -i ${KEYSTORE} ${UPDATE_SITE_URL} - ls + echo "put partial-results.json" | sftp -oNoHostAuthenticationForLocalhost=yes -oStrictHostKeyChecking=no -oUser=repo -F /dev/null -i ${KEYSTORE} ${UPDATE_SITE_URL} + echo "put relative-results.json" | sftp -oNoHostAuthenticationForLocalhost=yes -oStrictHostKeyChecking=no -oUser=repo -F /dev/null -i ${KEYSTORE} ${UPDATE_SITE_URL} ''' } } -- GitLab