ium_407409/Jenkinsfile-dvc

13 lines
537 B
Plaintext

node {
stage('Clone repository') {
git url: 'https://git.wmi.amu.edu.pl/s407409/ium_407409.git', branch: 'master', credentialsId: 's407409/******'
}
stage('DVC') {
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'
}
}
}