From 05e69c51ccd7fd2a929145c71fad29a48ab7bc4c Mon Sep 17 00:00:00 2001 From: Tan Yong Heng Date: Fri, 21 Jul 2017 17:32:34 +0800 Subject: [PATCH] Updated Jenkinsfile --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b1f4ebe74..fd60ce9fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,16 @@ pipeline { stages { stage('test') { steps { - echo 'hello world' - sh 'mvn compile' + parallel( + "test": { + echo 'hello world' + + }, + "": { + build 'pet clinic' + + } + ) } } stage('done') {