ium_434704/Jenkinsfile_dvc

21 lines
754 B
Plaintext
Raw Permalink Normal View History

2021-06-12 22:16:06 +02:00
pipeline {
agent {
dockerfile true
}
parameters {
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
}
2021-06-12 22:17:18 +02:00
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"
}
2021-06-12 22:16:06 +02:00
}
}
2021-06-12 22:19:03 +02:00
}
2021-06-12 22:16:06 +02:00
}