ium_434760/Jenkinsfile-dvc
2021-06-12 22:39:32 +02:00

23 lines
488 B
Plaintext

pipeline {
agent any
stages {
stage('checkout git') {
steps {
git 'https://git.wmi.amu.edu.pl/s434760/ium_434760.git'
}
}
stage('checkout dvc')
{
steps {
catchError {
sh 'dvc pull'
}
}
}
stage('reproduce') {
steps {
sh 'dvc repro'
}
}
}
}