xybrid/Jenkinsfile

23 lines
269 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Clean Up') {
steps {
sh '''cd xybrid
make clean || true
rm Makefile'''
}
}
stage('qbuild') {
steps {
sh 'qbuild'
}
}
stage('Make') {
2019-07-22 09:49:07 -04:00
steps {
sh 'make'
2019-07-22 09:49:07 -04:00
}
}
}
}