summaryrefslogtreecommitdiffstats
path: root/jjb/functest/functest-weekly-jobs.yml
blob: f44f7b8aab17fcd03c4d9e69c78ca81b85aebd40 (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
###################################
# job configuration for functest
###################################
- project:
    name: functest-weekly

    project: functest

#--------------------------------
# BRANCH ANCHORS
#--------------------------------
    master: &master
        stream: master
        branch: '{stream}'
        gs-pathname: ''
        docker-tag: 'latest'
        disabled: false
    danube: &danube
        stream: danube
        branch: 'stable/{stream}'
        gs-pathname: '/{stream}'
        docker-tag: 'stable'
        disabled: true
#--------------------------------
# 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:
# fuel CI PODs
        - baremetal:
            slave-label: fuel-baremetal
            installer: fuel
            <<: *master
        - virtual:
            slave-label: fuel-virtual
            installer: fuel
            <<: *master
        - baremetal:
            slave-label: fuel-baremetal
            installer: fuel
            <<: *danube
        - virtual:
            slave-label: fuel-virtual
            installer: fuel
            <<: *danube
#--------------------------------
    jobs:
        - 'functest-{installer}-{pod}-weekly-{stream}'

################################
# job template
################################
- job-template:
    name: 'functest-{installer}-{pod}-weekly-{stream}'

    disabled: '{obj:disabled}'

    concurrent: true

    properties:
        - logrotate-default
        - throttle:
            enabled: true
            max-per-node: 1
            option: 'project'

    wrappers:
        - build-name:
            name: '$BUILD_NUMBER Suite: $FUNCTEST_SUITE_NAME Scenario: $DEPLOY_SCENARIO'
        - timeout:
            timeout: '400'
            abort: true

    parameters:
        - project-parameter:
            project: '{project}'
            branch: '{branch}'
        - '{installer}-defaults'
        - '{slave-label}-defaults'
        - string:
            name: FUNCTEST_SUITE_NAME
            default: 'weekly'
            description: "Weekly suite name to run"
        - string:
            name: DEPLOY_SCENARIO
            default: 'os-odl_l2-nofeature-ha'
        - string:
            name: DOCKER_TAG
            default: '{docker-tag}'
            description: 'Tag to pull docker image'
        - string:
            name: CLEAN_DOCKER_IMAGES
            default: 'false'
            description: 'Remove downloaded docker images (opnfv/functest*:*)'
        - functest-parameter:
            gs-pathname: '{gs-pathname}'

    scm:
        - git-scm

    builders:
        - description-setter:
            description: "Built on $NODE_NAME"
        - 'functest-weekly-builder'
########################
# builder macros
########################
- builder:
    name: functest-weekly-builder
    builders:
        - shell:
            !include-raw: ./functest-cleanup.sh
        - shell:
            !include-raw: ./set-functest-env.sh
        - shell:
            !include-raw: ./functest-loop.sh
        - shell:
            !include-raw: ../../utils/push-test-logs.sh
        - shell:
            !include-raw: ./functest-exit.sh