diff options
Diffstat (limited to 'jenkinsfile.qemu')
-rw-r--r-- | jenkinsfile.qemu | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/jenkinsfile.qemu b/jenkinsfile.qemu index 7987656..cdb69a2 100644 --- a/jenkinsfile.qemu +++ b/jenkinsfile.qemu @@ -36,29 +36,29 @@ pipeline { } } - stage ("Configure") { - steps { - sh ''' - arch=$(uname -m | sed -e "s/amd64/x86_64/" -e "s/armv7.*/arm/") - mkdir -p build - cd build - ../source/configure --target-list=${arch}-softmmu - ''' - } - } + stage ("Configure") { + steps { + sh ''' + arch=$(uname -m | sed -e "s/amd64/x86_64/" -e "s/armv7.*/arm/") + mkdir -p build + cd build + ../source/configure --target-list=${arch}-softmmu + ''' + } + } - stage("Build") { - steps { - sh 'cd build; gmake -j $(nproc)' - } - } + stage("Build") { + steps { + sh 'cd build; gmake -j $(nproc)' + } + } - stage("Check") { - steps { - sh 'cd build; gmake -j $(nproc) check check-report.html' + stage("Check") { + steps { + sh 'cd build; gmake -j $(nproc) check check-report.html' sh 'xsltproc -o build/junit.xml scripts/gtester.xsl build/check-report.xml' junit 'build/junit.xml' - } - } + } + } } } |