aboutsummaryrefslogtreecommitdiffstats
path: root/jenkinsfile.qemu
blob: 12c03b38fb034a8b6a4891f6142f7719e0375b3b (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
#!/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',
				trackingSubmodules: true,
				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/")
                    mkdir -p build
                    cd build
                    ../source/configure --target-list=${arch}-softmmu
                '''
            }
        }

        stage("Build") {
            steps {
                sh 'gmake -C build -j $(nproc)'
            }
        }

        stage("Check") {
            steps {
                sh 'gmake -C build -j $(nproc) check check-report.html'
            }
        }
    }
}