From 7dbb92ecb118c34c1530b4c519693e290580dc8e Mon Sep 17 00:00:00 2001 From: Yasser BOUKHERS Date: Thu, 23 Apr 2020 10:14:22 +0200 Subject: [PATCH] [CI] fix build module func --- JenkinsFile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JenkinsFile b/JenkinsFile index a7c9df1..73bdd88 100644 --- a/JenkinsFile +++ b/JenkinsFile @@ -32,7 +32,7 @@ pipeline { stage("Build StandAlone") { steps { dir("StandAlone") { - build("") + buildModule("") } } } @@ -43,7 +43,7 @@ pipeline { } steps { dir("StandAlone") { - build("debug") + buildModule("debug") } } } @@ -67,7 +67,7 @@ pipeline { stage("Build Plugin") { steps { dir("Plugin") { - build("") + buildModule("") } } } @@ -78,7 +78,7 @@ pipeline { } steps { dir("Plugin") { - build("debug") + buildModule("debug") } } }