From 558f3546a0eabbc8cd5c143ddb1575e97f1e4326 Mon Sep 17 00:00:00 2001 From: Wojciech Jarmosz Date: Sat, 12 Jun 2021 22:17:18 +0200 Subject: [PATCH] Fix jenkins dvc --- Jenkinsfile_dvc | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile_dvc b/Jenkinsfile_dvc index 9061fcc..6184391 100644 --- a/Jenkinsfile_dvc +++ b/Jenkinsfile_dvc @@ -5,20 +5,22 @@ pipeline { parameters { gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH' } - stage('RUN DVC') { - steps { - withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { - sh "dvc init -f" - 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_PASS" - sh "dvc pull" - sh "dvc reproduce" + stages { + stage('RUN DVC') { + steps { + withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { + sh "dvc init -f" + 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_PASS" + sh "dvc pull" + sh "dvc reproduce" + } } } - } - post { - always { - mail body: "DVC - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' + post { + always { + mail body: "DVC - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' + } } } } \ No newline at end of file