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

7
Jenkinsfile vendored
View File

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

View File

@ -40,5 +40,10 @@ node {
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
throw e
}
}
stage ("build evaluation") { //an arbitrary stage name
steps {
build 's434765-evaluation/evaluation/' //this is where we specify which job to invoke.
}
}
}