aboutsummaryrefslogtreecommitdiff
path: root/django-restricted-resource.yaml
blob: 4055c3755e2bb1821d2d2089bedb82c773b30c63 (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: django-restricted-resource
    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: lavabot
    display-name: 'PEP8 and Unit Test CI Job for django-restricted-resource'
    triggers:
        - gerrit:
            server-name: 'review.linaro.org'
            override-votes: true
            gerrit-build-successful-codereview-value: 1
            gerrit-build-failed-codereview-value: -1
            trigger-for-unreviewed-patches: true
            readable-message: false
            successful-message: 'PEP8 and Units Tests Successful'
            start-message: 'PEP8 and Units Tests Started'
            failure-message: 'PEP8 and Units Tests Failed'
            custom-url: '${BUILD_URL}/console'
            projects:
                - project-compare-type: 'PLAIN'
                  project-pattern: 'lava/django-restricted-resource'
                  branches:
                    - branch-compare-type: 'PLAIN'
                      branch-pattern: 'master'
    wrappers:
        - timestamps
    builders:
        - shell: |
            #!/bin/bash

            rm -rf ${WORKSPACE}/*
            echo "#${BUILD_NUMBER}-${GERRIT_PATCHSET_REVISION:0:8}" > ${WORKSPACE}/version.txt

            git clone -b ${GERRIT_BRANCH} --depth 1 https://git.linaro.org/${GERRIT_PROJECT}
            cd *
            git log -n3
            git fetch https://review.linaro.org/${GERRIT_PROJECT} ${GERRIT_REFSPEC}
            git checkout -q FETCH_HEAD

            ./ci-run
        - build-name-setter:
            name: 'version.txt'
            file: true