Merge branch 'Jenkins' of https://git.foxiepa.ws/foxiepaws/xybrid into portability/clang

portability/clang
Rachel Fae Fox (foxiepaws) 2019-07-22 10:37:58 -04:00
commit 3ef8f61c4d
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -10,12 +10,14 @@ rm Makefile || true'''
}
stage('qmake') {
steps {
sh 'qmake'
sh '''cd xybrid
qmake'''
}
}
stage('Make') {
steps {
sh 'make'
sh '''cd xybrid
make'''
}
}
}