trigger other projects
All checks were successful
s434765-evaluation/pipeline/head This commit looks good

This commit is contained in:
Karolina Oparczyk 2021-05-20 18:41:48 +02:00
parent 89f18e3061
commit 7264fa8810
2 changed files with 11 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -39,4 +39,9 @@ node {
} }
} }
stage ("build training") { //an arbitrary stage name
steps {
build 's434765-training/master/' //this is where we specify which job to invoke.
}
}
} }

View File

@ -41,4 +41,9 @@ node {
throw e throw e
} }
} }
stage ("build evaluation") { //an arbitrary stage name
steps {
build 's434765-evaluation/evaluation/' //this is where we specify which job to invoke.
}
}
} }