Edir configure step in jenkinsfile

This commit is contained in:
Mario Hüttel 2021-10-10 23:01:31 +02:00
parent ed936cf9f9
commit a2bcd37800

6
Jenkinsfile vendored
View File

@ -5,9 +5,11 @@ pipeline {
stage('Configure') { stage('Configure') {
steps { steps {
echo 'Configuring Cmake...' echo 'Configuring Cmake...'
mdkir "build" sh '''
cd "build" mdkir "build" &&
cd "build" &&
cmake "../stm-firmware" cmake "../stm-firmware"
'''
} }
} }
stage('Build') { stage('Build') {