xybrid/Jenkinsfile

25 lines
326 B
Plaintext
Raw Permalink Normal View History

pipeline {
agent any
stages {
stage('Clean Up') {
steps {
sh '''cd xybrid
make clean || true
rm Makefile || true'''
}
}
2019-07-22 10:05:02 -04:00
stage('qmake') {
steps {
2019-07-22 10:07:10 -04:00
sh '''cd xybrid
qmake'''
}
}
stage('Make') {
steps {
2019-07-22 10:14:45 -04:00
sh '''cd xybrid
make -j 17'''
}
}
}
}