From 618aa8888c30dd667c1ac5d5f597401661254737 Mon Sep 17 00:00:00 2001 From: Jakub Henyk Date: Sat, 13 May 2023 18:32:30 +0200 Subject: [PATCH] sifubj --- Jenkinsfile_6 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile_6 b/Jenkinsfile_6 index 77c05c4..8c3c6da 100644 --- a/Jenkinsfile_6 +++ b/Jenkinsfile_6 @@ -5,14 +5,20 @@ pipeline { } } stages { - stage('Archive Output') { + stage('DVC Commands') { steps { withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { sh 'dvc remote add -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp' sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_KEY' - sh 'dvc pull' - archiveArtifacts 'metrics.txt' + sh 'dvc pull' } } + stage('Archive Output') { + steps { + archiveArtifacts 'metrics.txt' + } + + } } +} } \ No newline at end of file