aboutsummaryrefslogtreecommitdiff
path: root/ynk-lof-test.yaml
blob: 586af135b7bee9fe5bbbf318cc9516d5f2947fe9 (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
- job:
    name: ynk-lof-test
    project-type: matrix
    defaults: global
    logrotate:
        daysToKeep: 15
        numToKeep: 15
    properties:
        - authorization:
            anonymous:
                - job-read
            linaro:
                - job-build
                - job-cancel
                - job-configure
    disabled: false
    node: build
    display-name: 'LHG test builds'
    axes:
        - axis:
            type: slave
            name: label
            values:
                - lhg
        - axis:
            type: user-defined
            name: image_type
            values:
                - media-weston
        - axis:
            type: user-defined
            name: board_type
            values:
                - db410c
    execution-strategy:
        sequential: true
    wrappers:
        - timestamps
        - matrix-tie-parent:
            node: lhg
    builders:
        - shell: |
            #!/bin/bash

            set -x

            export PATH="$HOME/bin:$PATH"

            manifest_branch=my.jethro.testing
            manifest_repository=https://github.com/andrey-konovalov/lhg-oe-manifests.git

            rm -rf build

            repo init -u $manifest_repository -b $manifest_branch -m ${image_type}-${board_type}.xml --repo-url=git://android.git.linaro.org/tools/repo
            repo sync

            MACHINE=dragonboard-410c source meta-lhg/script/envsetup.sh
            bitbake lof-mm-image

            # just try the build - don't publish anything for now
    publishers:
        - email:
            recipients: 'andrey.konovalov@linaro.org'