From 7264fa8810ff9bd1e0cb7fd09cf8dc07ec8dacf4 Mon Sep 17 00:00:00 2001 From: Karolina Oparczyk Date: Thu, 20 May 2021 18:41:48 +0200 Subject: [PATCH] trigger other projects --- Jenkinsfile | 7 ++++++- JenkinsfileNeural | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f410356..29922b6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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. + } + } } \ No newline at end of file diff --git a/JenkinsfileNeural b/JenkinsfileNeural index 2c894bc..27d5017 100644 --- a/JenkinsfileNeural +++ b/JenkinsfileNeural @@ -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. } } +}