aboutsummaryrefslogtreecommitdiff
path: root/qemu-docker.yaml
blob: 27b71711bcbf876abf310c301c474cb0c5fa0b28 (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
- job:
    name: qemu-docker
    project-type: freestyle
    defaults: global
    logrotate:
        daysToKeep: 30
        numToKeep: 30
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-read
                - job-extended-read
                - job-build
                - job-cancel
    disabled: false
    node: docker-utopic
    display-name: 'QEMU build'
    scm:
        - git:
            url: git://git.qemu.org/qemu.git
            refspec: +refs/heads/master:refs/remotes/origin/master
            name: origin
            branches:
                - refs/heads/master
            basedir: qemu-linaro
            skip-tag: true
            clean: true
            disable-submodules: true
            wipe-workspace: false
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
    builders:
        - shell: |
            #!/bin/bash

            set -e

            rm -rf qemu-ci
            git clone --depth 1 http://git.linaro.org/git/ci/qemu.git qemu-ci
            bash -x qemu-ci/qemu-pkg.sh
    publishers:
        - archive:
            artifacts: '*.changes, *.dsc, *.gz, *.bz2, *.xz'
            latest-only: true
        - trigger:
            project: 'qemu-lava-ltp-tests, qemu-lava-risu, qemu-lava-tcg-system'
        - trigger-parameterized-builds:
            - project: build-all-packages
              property-file: qemu-params
              condition: SUCCESS
        - email:
            recipients: 'riku.voipio@linaro.org'