ium_452662/Jenkinsfile_dvc

27 lines
688 B
Plaintext

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
sh 'cd ium_452662'
}
}
stage('Download DVC files') {
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'
}
}
}
stage('Run DVC') {
steps {
sh 'dvc reproduce'
}
}
}
}