diff --git a/Jenkinsfile b/Jenkinsfile index 94bf1c9..f4f60cf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,9 +5,11 @@ pipeline { stage('Configure') { steps { echo 'Configuring Cmake...' - mdkir "build" - cd "build" - cmake "../stm-firmware" + sh ''' + mdkir "build" && + cd "build" && + cmake "../stm-firmware" + ''' } } stage('Build') {