summaryrefslogtreecommitdiffstats
path: root/jjb/openci/openci-opnfv-daily-jobs.yaml
blob: 7f48fcc06577a119ce78de2e7fe0144dd65daacb (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
---
- project:
    name: openci-opnfv

    project: '{name}'

    stream:
      - master:
          branch: '{stream}'
          gs-pathname: ''
          disabled: false

    scenario:
      - 'os-odl-nofeature-ha':
          origin: ODL
      - 'k8-nosdn-onap-ha':
          origin: ONAP

    jobs:
      - 'openci-opnfv-{scenario}-compose-daily-{stream}'
      - 'openci-opnfv-{scenario}-test-daily-{stream}'

- job-template:
    name: 'openci-opnfv-{scenario}-compose-daily-{stream}'

    disabled: '{obj:disabled}'

    concurrent: false

    parameters:
      - string:
          name: PUBLISH_EVENT_TYPE
          default: CompositionDefinedEvent
          description: 'The type of the event this job publishes'
      - string:
          name: PUBLISH_EVENT_ORIGIN
          default: OPNFV
          description: 'Originating community'
      - string:
          name: DEPLOY_SCENARIO
          default: '{scenario}'
          description: 'The scenario that is composed'
      - string:
          name: SCENARIO_METADATA_LOCATION
          default: https://url/to/scenario/metadata/on/opnfv/artifact/repo/$BUILD_NUMBER
          description: 'The location of the scenario metadata'
      - 'ericsson-build4-defaults'

    wrappers:
      - credentials-binding:
          - username-password-separated:
              credential-id: openci-connect-activemq
              username: ACTIVEMQ_USER
              password: ACTIVEMQ_PASSWORD
      - workspace-cleanup

    triggers:
      - jms-messaging:
          provider-name: openci.activemq
          selector: JMSType = 'ArtifactPublishedEvent' and JMSOrigin = 'ODL'

    builders:
      - shell: |
          #!/bin/bash

          echo
          echo "Triggered by $type"
          echo "----------------------------------"
          echo $CI_MESSAGE
          echo "----------------------------------"
      - shell:
          !include-raw-escape: ./create-cde.sh

- job-template:
    name: 'openci-opnfv-{scenario}-test-daily-{stream}'

    disabled: '{obj:disabled}'

    concurrent: false

    parameters:
      - string:
          name: PUBLISH_EVENT_TYPE
          default: ConfidenceLevelModifiedEvent
          description: 'The type of the event this job publishes'
      - string:
          name: PUBLISH_EVENT_ORIGIN
          default: OPNFV
          description: 'Originating community'
      - string:
          name: DEPLOY_SCENARIO
          default: '{scenario}'
          description: 'The scenario that is composed'
      - string:
          name: SCENARIO_METADATA_LOCATION
          default: https://url/to/scenario/metadata/on/opnfv/artifact/repo/$BUILD_NUMBER
          description: 'The location of the scenario metadata'
      - string:
          name: CONFIDENCE_LEVEL
          default: "'opnfvdaily': 'SUCCESS'"
          description: 'The confidence level the published artifact gained'
      - 'ericsson-build4-defaults'

    wrappers:
      - credentials-binding:
          - username-password-separated:
              credential-id: openci-connect-activemq
              username: ACTIVEMQ_USER
              password: ACTIVEMQ_PASSWORD
      - workspace-cleanup

    triggers:
      - jms-messaging:
          provider-name: openci.activemq
          selector: JMSType = 'CompositionDefinedEvent' and JMSOrigin = 'OPNFV' and JMSScenario = '{scenario}'

    builders:
      - shell: |
          #!/bin/bash

          echo
          echo "Triggered by $type"
          echo "----------------------------------"
          echo $CI_MESSAGE
          echo "----------------------------------"
      - shell:
          !include-raw-escape: ./create-clme.sh