summaryrefslogtreecommitdiffstats
path: root/jjb/dovetail/dovetail-weekly-jobs.yml
blob: 2d6d0a9faa9ef3cfa677b3f9cb2227311d1122c5 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
- project:
    name: dovetail-weekly-jobs
    project: dovetail
#--------------------------------
# BRANCH ANCHORS
#--------------------------------
    master: &master
        stream: master
        branch: '{stream}'
        dovetail-branch: '{stream}'
        gs-pathname: ''
        docker-tag: 'latest'
    colorado: &colorado
        stream: colorado
        branch: 'stable/{stream}'
        dovetail-branch: master
        gs-pathname: '/{stream}'
        docker-tag: 'latest'

#--------------------------------
# POD, INSTALLER, AND BRANCH MAPPING
#--------------------------------
#    Installers using labels
#            CI PODs
# This section should only contain the installers
# that have been switched using labels for slaves
#--------------------------------
    pod:
#        - baremetal:
#            slave-label: apex-baremetal
#            sut: apex
#            <<: *colorado
        - baremetal:
            slave-label: compass-baremetal
            sut: compass
            <<: *colorado
#        - baremetal:
#            slave-label: fuel-baremetal
#            sut: fuel
#            <<: *master
#        - baremetal:
#            slave-label: joid-baremetal
#            sut: joid
#            <<: *colorado

    testsuite:
        - 'debug'
        - 'proposed_tests'
        - 'compliance_set'

    loop:
        - 'weekly':
            job-timeout: 60

    jobs:
        - 'dovetail-{sut}-{pod}-{testsuite}-{loop}-{stream}'

################################
# job template
################################
- job-template:
    name: 'dovetail-{sut}-{pod}-{testsuite}-{loop}-{stream}'

    disabled: '{obj:disabled}'

    concurrent: false

    wrappers:
        - build-name:
            name: '$BUILD_NUMBER Scenario: $DEPLOY_SCENARIO'
        - timeout:
            timeout: '{job-timeout}'
            abort: true

    parameters:
        - project-parameter:
            project: '{project}'
        - gerrit-parameter:
            branch: '{branch}'
        - '{sut}-defaults'
        - '{slave-label}-defaults'
        - string:
            name: DEPLOY_SCENARIO
            default: 'os-nosdn-nofeature-ha'
        - string:
            name: DOCKER_TAG
            default: '{docker-tag}'
            description: 'Tag to pull dovetail docker image'
        - string:
            name: CI_DEBUG
            default: 'true'
            description: "Show debug output information"
        - string:
            name: TESTSUITE
            default: '{testsuite}'
            description: "dovetail testsuite to run"
        - string:
            name: DOVETAIL_REPO_DIR
            default: "/home/opnfv/dovetail"
            description: "Directory where the dovetail repository is cloned"

    scm:
        - git-scm

    builders:
        - description-setter:
            description: "POD: $NODE_NAME"
        - 'dovetail-cleanup'
        - 'dovetail-run'

    publishers:
        - archive:
            artifacts: 'results/**/*'
            allow-empty: true
            fingerprint: true

########################
# builder macros
########################
- builder:
    name: dovetail-run-weekly
    builders:
        - shell:
            !include-raw: ./dovetail-run.sh
- builder:
    name: dovetail-cleanup-weekly
    builders:
        - shell:
            !include-raw: ./dovetail-cleanup.sh