From d92770dc83d91ee3efbd88a990fdfc8c11e9da7a Mon Sep 17 00:00:00 2001 From: Yevhenii Poliakov Date: Mon, 15 May 2023 19:23:55 +0200 Subject: [PATCH] update jenkinsfile --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 02c751f..2a00cd2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,12 +39,20 @@ pipeline { echo("run data script") //sh "source docker_ium/bin/activate" sh "ls -a" - sh "chmod u+x script2.py" + sh "chmod u+x better_preprocess.py" //sh "pip3 show pandas" //sh "cat script5.py" - sh "python3 script2.py" + sh "python3 better_preprocess.py" } } + stage('Trigger Multibranch Pipeline') { + steps { + echo ("Trigger Multibranch Pipeline") + + build job: 's151636-training' + } + } +} } }