Compare commits

...

5 Commits

Author SHA1 Message Date
Rachel Fae Fox (foxiepaws) 3ef8f61c4d Merge branch 'Jenkins' of https://git.foxiepa.ws/foxiepaws/xybrid into portability/clang 2019-07-22 10:37:58 -04:00
Rachel Fae Fox 5e2b0ea970 update to newer qmake removed need 2019-07-22 10:25:54 -04:00
Rachel Fae Fox 0fe9261d1d cd xybrid. 2019-07-22 10:14:45 -04:00
Rachel Fae Fox bd6041d1e2 qmakespec? 2019-07-22 10:14:11 -04:00
Rachel Fae Fox 138600bf36 Checking pwd 2019-07-22 10:07:10 -04:00
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'''
}
}
}