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 +}