ium_444380/Jenkinsfile.dvc_job

25 lines
985 B
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 18:54:24 +02:00
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY', passphraseVariable: '', usernameVariable: 'USER')]) {
2022-06-05 17:18:39 +02:00
sh 'dvc remote list'
2022-06-05 17:25:33 +02:00
sh 'dvc remote default'
2022-06-05 16:51:30 +02:00
sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY'
2022-06-05 18:53:49 +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
}
}
}