21 lines
442 B
Plaintext
21 lines
442 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') {
|
||
|
sh 'dvc repro'
|
||
|
}
|
||
|
}
|
||
|
}
|