From 31bcaa4195732e349ab499c1949c0e5437617475 Mon Sep 17 00:00:00 2001 From: Jesper Blidkvist Date: Thu, 27 May 2021 14:56:51 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4c2847f..422bc40 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,10 +2,10 @@ pipeline { agent any stages { stage('Build') { - steps { - echo 'Test' - } + steps { + sh 'echo "Executing build steps..."' + cmakeBuild cleanBuild: true, buildDir: 'build', installation: 'InSearchPath', steps: [[envVars: 'DESTDIR=${WORKSPACE}/artifacts', withCmake: true]] + } } - } -} \ No newline at end of file +}