ium_452639/dvc.jenkinsfile
Robert Bendun 9ae2065118 d v c
2023-05-23 23:35:35 +02:00

18 lines
492 B
Plaintext

node {
checkout scm
docker.build("s452639-image-dvc").inside {
stage('Build') {
checkout([$class: 'GitSCM', branches: [[name: "dvc"]], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]])
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {
sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY'
sh "dvc pull"
sh "dvc repo"
}
}
}
}