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') {
steps {
echo 'Configuring Cmake...'
mdkir "build"
cd "build"
sh '''
mdkir "build" &&
cd "build" &&
cmake "../stm-firmware"
'''
}
}
stage('Build') {