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..' }