ium_434788/Jenkinsfile_dvc
Dominik Strzako 3821490827 Tester
2021-06-08 01:59:11 +02:00

26 lines
769 B
Plaintext

pipeline {
agent {docker { image 'snowycocoon/ium_434788:3'}}
stages {
stage('Test') {
steps {
git 'https://git.wmi.amu.edu.pl/s434788/ium_434788.git'
git 'checkout DVC'
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"
}
}
}
post {
success {
archiveArtifacts 'sample.txt'
mail body: 'SUCCESS',
subject: 's434788 DVC',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}