Add build step to jenkinsfile

This commit is contained in:
Mario Hüttel 2021-10-10 23:12:22 +02:00
parent 4e6e5db2c3
commit 015028bde2

5
Jenkinsfile vendored
View File

@ -14,7 +14,10 @@ pipeline {
} }
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' sh '''
cd "build" &&
make
'''
} }
} }
stage('Test') { stage('Test') {