blob: 66518af914ad939caf3b2ea14941c92cbe5fd295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/usr/bin/env groovy
pipeline {
agent {
node 'sys-fedora-x64'
}
triggers {
pollSCM('H * * * *')
}
stages {
stage ('Prepare') {
steps {
dir ('source') {
checkout([
$class: 'GitSCM',
branches: [
[ name: '*/master' ]
],
extensions: [
[
$class: 'CloneOption',
timeout: 60
],[
$class: 'SubmoduleOption',
timeout: 60
]
],
userRemoteConfigs: [
[ url: 'git://git.qemu.org/qemu.git' ]
]])
}
}
}
stage ("Configure") {
steps {
sh '''
arch=$(uname -m | sed -e "s/amd64/x86_64/" -e "s/armv7.*/arm/")
rm -rf build
mkdir build
cd build
../source/configure --target-list=${arch}-softmmu
'''
}
}
stage("Build") {
steps {
sh 'cd build; gmake -j $(nproc)'
}
}
stage("Check") {
steps {
timeout (60) {
sh 'cd build; gmake -j $(nproc) check'
}
// sh 'xsltproc -o build/junit.xml scripts/gtester.xsl build/check-report.xml'
// junit 'build/junit.xml'
}
}
}
}
|