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

This commit is contained in:
Karolina Oparczyk 2021-05-20 18:45:26 +02:00
parent 67a31c4c43
commit eab239b6a1
2 changed files with 5 additions and 8 deletions

6
Jenkinsfile vendored
View File

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

View File

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