ium_434760/Jenkinsfile-dvc

23 lines
488 B
Plaintext
Raw Normal View History

2021-06-12 22:37:11 +02:00
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') {
2021-06-12 22:38:40 +02:00
steps {
sh 'dvc repro'
}
2021-06-12 22:37:11 +02:00
}
}
}