Chore: Turn on SBOM for USECASEUI
[ci-management.git] / jjb / integration / integration-macros.yaml
1 ---
2 - parameter:
3     name: integration-test-plan
4     parameters:
5       - string:
6           name: TESTPLAN
7           default: '{test-plan}'
8           description: 'General test plan we will run unless stream-specific one is found'
9
10 - parameter:
11     name: integration-test-options
12     parameters:
13       - string:
14           name: TESTOPTIONS
15           default: '{test-options}'
16           description: 'Robot command options'
17
18 - parameter:
19     name: html-publisher-dir
20     parameters:
21       - string:
22           name: HTMLDIR
23           default: '{html-dir}'
24           description: 'Directory location to be used by HTML publisher plugin'
25
26 - parameter:
27     name: html-publisher-files
28     parameters:
29       - string:
30           name: HTMLFILES
31           default: '{html-files}'
32           description: 'File name to be used by HTML publisher plugin to produce the report'
33
34 - builder:
35     name: integration-install-robotframework
36     builders:
37       - shell:
38           !include-raw:
39           - include-raw-integration-install-robotframework.sh
40
41 - builder:
42     name: integration-install-robotframework-py3
43     builders:
44       - shell:
45           !include-raw:
46           - include-raw-integration-install-robotframework-py3.sh
47
48 - builder:
49     name: integration-run-test
50     builders:
51       - shell: "${WORKSPACE}/run-csit.sh ${TESTPLAN} ${TESTOPTIONS}"
52
53 - builder:
54     name: integration-run-project-test
55     builders:
56       - shell: "${WORKSPACE}/csit/run-project-csit.sh ${TESTOPTIONS}"
57
58 - builder:
59     name: integration-autorelease-fix-relativepaths
60     builders:
61       - shell: "${WORKSPACE}/autorelease/scripts/fix-relativepaths.sh"
62
63 - builder:
64     name: integration-autorelease-set-version
65     builders:
66       - shell: "${WORKSPACE}/autorelease/scripts/set-version.sh"
67
68 - builder:
69     name: integration-install-vagrant
70     builders:
71       - shell: |
72           #!/bin/bash
73           set -ex # Fail build if any setup step fails
74           sudo add-apt-repository --yes ppa:tiagohillebrandt/vagrant
75           sudo apt update
76           sudo apt --yes install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev vagrant
77           vagrant plugin install vagrant-libvirt
78           vagrant plugin install vagrant-disksize
79           vagrant plugin install vagrant-sshfs
80           vagrant plugin install vagrant-reload
81           mkdir -p ~/.ssh
82
83 - builder:
84     name: integration-docker-compose-logs
85     builders:
86       - shell: !include-raw: shell/docker-compose-logs.sh
87
88 - publisher:
89     name: integration-robot
90     publishers:
91       - robot:
92           output-path: 'archives'
93           output-xml: '**/output.xml'
94           report-html: '**/report.html'
95           log-html: '**/log.html'
96           other-files: ''
97           unstable-threshold: '{unstable-if}'
98           pass-threshold: '{pass-if}'
99           only-critical: false
100
101 - publisher:
102     name: integration-project-robot
103     publishers:
104       - robot:
105           output-path: 'csit/archives'
106           output-xml: '**/output.xml'
107           report-html: '**/report.html'
108           log-html: '**/log.html'
109           other-files: ''
110           unstable-threshold: '{unstable-if}'
111           pass-threshold: '{pass-if}'
112           only-critical: false
113
114 - publisher:
115     name: integration-docker-compose-logs
116     publishers:
117       - postbuildscript:
118           builders:
119             - role: BOTH
120               build-on:
121                 - FAILURE
122                 - SUCCESS
123                 - UNSTABLE
124               build-steps:
125                 - integration-docker-compose-logs