Jenkinsfile-dvc
This commit is contained in:
parent
b90c2354fc
commit
6346dcbca5
21
Jenkinsfile-dvc
Normal file
21
Jenkinsfile-dvc
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user