ium_444380/Jenkinsfile.dvc_job

24 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-06-05 16:08:40 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage("Checkout git") {
steps {
2022-06-05 16:17:40 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444380', url: 'https://git.wmi.amu.edu.pl/s444380/ium_444380.git']]])
2022-06-05 16:08:40 +02:00
}
}
stage("DVC"){
2022-06-05 16:17:40 +02:00
steps {
2022-06-05 17:15:30 +02:00
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY'), string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
2022-06-05 17:08:50 +02:00
sh 'dvc remote add -f -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl'
2022-06-05 16:51:30 +02:00
sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY'
2022-06-05 17:01:51 +02:00
sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS'
2022-06-05 16:51:30 +02:00
sh 'dvc pull'
sh 'dvc repro'
2022-06-05 16:17:40 +02:00
}
}
2022-06-05 16:08:40 +02:00
}
}
}