-
Notifications
You must be signed in to change notification settings - Fork 4
/
stage-topology.yml
36 lines (31 loc) · 1006 Bytes
/
stage-topology.yml
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
---
- name: Start of CI/CD pipeline
hosts: netcicd
gather_facts: false
collections:
- cisco.ios
- cisco.iosxr
- cisco.nxos
- ansible.netcommon
roles:
- topology
- name: Aggregate test results
hosts: localhost
tasks:
- name: Check if tests are done
find:
path: roles/topology/files/reports
pattern: "*.xml"
register: topology_test_result
- debug:
msg: "No reports found"
when: topology_test_result.matched == 0
- name: "Publishing reports"
local_action: shell rebot --output topology_unittest.xml --log topology_unittest_log.html --report topology_unittest_report.html --outputdir ../ *.xml
args:
chdir: roles/topology/files/reports
when: topology_test_result.matched != 0
...