diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-30 20:06:22 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-30 20:06:22 +0100 |
commit | 5183c66479c08644eca11265b3c868aa7a750782 (patch) | |
tree | f1735ef1d948a02828b686dd7696ced1cf5dd8de /jenkinsfile.qemu | |
parent | 8b40a3442f279e3851e060f547799d43db55721c (diff) | |
download | jenkinsfiles-5183c66479c08644eca11265b3c868aa7a750782.tar.gz |
tabify
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' - } - } + } + } } } |