aboutsummaryrefslogtreecommitdiff
path: root/odp-release-api-style-check.yaml
blob: e8dd1c01b32e1aa12c0ddb98581977d9279e3779 (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
67
68
69
70
71
72
73
74
75
- job:
    name: odp-release-api-style-check
    project-type: matrix
    defaults: global
    description: |
        * Run style check script on the ODP's LTS released code base.
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-read
                - job-extended-read
                - job-build
                - job-cancel
        - build-discarder:
            num-to-keep: 30
            days-to-keep: 30
    disabled: false
    node: master
    child-workspace: .
    display-name: 'ODP release API style check'
    axes:
        - axis:
            type: user-defined
            name: platform_type
            values:
                - generic
        - axis:
            type: user-defined
            name: git_branch
            values:
                - monarch_lts
        - axis:
            type: slave
            name: label
            values:
                - docker-jessie-amd64
    wrappers:
        - timestamps
        - matrix-tie-parent:
            node: master
        - timeout:
            timeout: 60
    builders:
        - shell: |
            #!/bin/bash

            set -ex

            sudo apt-get update
            sudo apt-get install -y --no-install-recommends codespell

            case "${platform_type}" in
              generic)
                git clone --branch ${git_branch} --depth 1 git://git.linaro.org/lng/odp.git odp
                ;;
              dpdk)
                git clone --branch ${git_branch} --depth 1 git://git.linaro.org/lng/odp-dpdk.git odp
                ;;
            esac

            cd odp

            find platform/linux-${platform_type} -name *.h -o -name *.c -exec ./scripts/odp_check {} \;
            current_check=$(git log --oneline -1)
            set +x
            echo "************************************************"
            echo "Generated from hash: ${current_check}"
            echo "************************************************"
            set -x
    publishers:
        - email:
            recipients: 'lng-ci@lists.linaro.org'