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 16:45:53 +02:00
|
|
|
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY', passphraseVariable: '', usernameVariable: 'USER')]) {
|
|
|
|
sh "dvc remote list"
|
2022-06-05 16:51:30 +02:00
|
|
|
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 keyfile $IUM_SFTP_KEY'
|
|
|
|
sh 'dvc pull'
|
|
|
|
sh 'dvc repro'
|
2022-06-05 16:17:40 +02:00
|
|
|
}
|
|
|
|
}
|
2022-06-05 16:08:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|