Add Jenkinsfile that i hope is good enough

portability/macos
Rachel Fae Fox (foxiepaws) 2019-07-22 09:37:05 -04:00
parent 713d952cef
commit 55b71f449f
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Clean Up') {
steps {
sh '''cd xybrid
make clean || true
rm Makefile'''
}
}
stage('qbuild') {
steps {
sh 'qbuild'
}
}
stage('Make') {
sh 'make'
}
}
}