trigger other projects

This commit is contained in:
Karolina Oparczyk 2021-05-20 18:44:00 +02:00
parent 1f2d929c2e
commit 67a31c4c43
2 changed files with 12 additions and 2 deletions

9
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

@ -41,5 +41,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.
}
}
}