From 0ab13edced524b1673231c4cf3480557f743d155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 10 Oct 2021 22:49:53 +0200 Subject: [PATCH] jenkinsfile test --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b982250..a32f85e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,15 @@ pipeline { agent any stages { - stage('Build') { + stage('Configure') { + steps { + echo 'Configuring Cmake...' + mdkir build + cd build + ls + } + } + stage('Build') { steps { echo 'Building..' }