Fix jenkins dvc

This commit is contained in:
Wojciech Jarmosz 2021-06-12 22:17:18 +02:00
parent 24dbcd1ed2
commit 558f3546a0

View File

@ -5,20 +5,22 @@ pipeline {
parameters { parameters {
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH' gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
} }
stage('RUN DVC') { stages {
steps { stage('RUN DVC') {
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { steps {
sh "dvc init -f" 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 init -f"
sh "dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS" sh "dvc remote add -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp"
sh "dvc pull" sh "dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS"
sh "dvc reproduce" sh "dvc pull"
sh "dvc reproduce"
}
} }
} }
} post {
post { always {
always { mail body: "DVC - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
mail body: "DVC - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' }
} }
} }
} }