ium_434784/dvc.Jenkinsfile
Maciej Sobkowiak 3a384a3586
All checks were successful
s434784-evaluation/pipeline/head This commit looks good
s434784-training/pipeline/head This commit looks good
.
2021-06-12 23:21:58 +02:00

33 lines
1.0 KiB
Plaintext

pipeline {
agent {
dockerfile true
}
stages{
stage('checkout: Check out from version control') {
steps {
git 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
}
}
stage('dvc') {
steps {
withCredentials(
[sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {
sh "dvc init -f"
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 reproduce"
}
}
}
}
// stage('send-mail') {
// steps{
// emailext body: currentBuild.result ?: 'SUCCESS',
// subject: 's434784-training',
// to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
// }
// }
}