From d8d81efdeb13ef665f1243d80f32dcffd8efa59c Mon Sep 17 00:00:00 2001 From: valentin_lechner Date: Thu, 30 Jan 2020 17:14:31 +0100 Subject: [PATCH] Pipeline Test --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2e3d40e..87c6b63 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,11 +12,15 @@ pipeline { } stage('compile'){ - sh 'echo "fake-compiling..."' + steps{ + sh 'echo "fake-compiling..."' + } } stage('deploySONAR'){ - sh 'sonar-scanner' + steps{ + sh 'sonar-scanner' + } } } post {