ium_434788/Jenkinsfile_dvc

23 lines
654 B
Plaintext
Raw Normal View History

2021-06-08 00:28:23 +02:00
pipeline {
2021-06-12 15:37:36 +02:00
agent { docker { image 'shroomy/ium:8' } }
2021-06-08 00:28:23 +02:00
stages {
stage('Test') {
steps {
2021-06-08 00:34:31 +02:00
sh 'dvc remote add -f -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp'
sh 'dvc remote list'
sh 'dvc remote modify --local ium_ssh_remote password IUM@2021'
sh 'dvc pull'
sh "dvc reproduce"
2021-06-08 00:28:23 +02:00
}
}
}
post {
success {
2021-06-08 00:34:31 +02:00
archiveArtifacts 'sample.txt'
2021-06-08 00:28:23 +02:00
mail body: 'SUCCESS',
subject: 's434788 DVC',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}