From ff6864f1914a8d83d1f7042891718f12bc969af8 Mon Sep 17 00:00:00 2001 From: valentin_lechner Date: Thu, 30 Jan 2020 17:13:10 +0100 Subject: [PATCH] Pipeline Test --- Jenkinsfile | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 037e19b..2e3d40e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,20 +2,22 @@ pipeline { + agent any + stages{ stage('checkout VCS'){ steps{ checkout scm } + } - stage('compile'){ - sh 'make' - } + stage('compile'){ + sh 'echo "fake-compiling..."' + } - stage('deploySONAR'){ - sh 'sonar-scanner' - } - } + stage('deploySONAR'){ + sh 'sonar-scanner' + } } post { unstable {