File tree Expand file tree Collapse file tree 3 files changed +43
-4
lines changed
Expand file tree Collapse file tree 3 files changed +43
-4
lines changed Original file line number Diff line number Diff line change 33 hosts : all
44 vars :
55 job_name : test_analysis
6- roles :
7- - analysis
6+ tasks :
7+ - name : Test | Run analysis
8+ block :
9+ - name : Test | Run role analysis
10+ ansible.builtin.include_role :
11+ name : infra.leapp.analysis
12+ always :
13+ - name : Cleanup | Remove log files
14+ tags : tests::cleanup
15+ ansible.builtin.shell :
16+ executable : /bin/bash
17+ cmd : |
18+ set -euxo pipefail
19+ rm -f /var/log/leapp/leapp-upgrade.log
20+ rm -f /var/log/ripu/ripu.log*
21+ changed_when : true
822...
23+
Original file line number Diff line number Diff line change 33 hosts : all
44 vars :
55 job_name : test_common
6- roles :
7- - common
6+ tasks :
7+ - name : Test | Run common
8+ block :
9+ - name : Test | Run role common
10+ ansible.builtin.include_role :
11+ name : infra.leapp.common
12+ always :
13+ - name : Cleanup | Remove log files
14+ tags : tests::cleanup
15+ ansible.builtin.shell :
16+ executable : /bin/bash
17+ cmd : |
18+ set -euxo pipefail
19+ rm -f /var/log/leapp/leapp-upgrade.log
20+ rm -f /var/log/ripu/ripu.log*
21+ changed_when : true
822...
Original file line number Diff line number Diff line change 2323 - results_errors.stdout_lines | length > 0
2424 vars :
2525 err_pat : This system is not yet registered
26+ always :
27+ - name : Cleanup | Remove log files
28+ tags : tests::cleanup
29+ ansible.builtin.shell :
30+ executable : /bin/bash
31+ cmd : |
32+ set -euxo pipefail
33+ rm -f /var/log/leapp/leapp-upgrade.log
34+ rm -f /var/log/ripu/ripu.log*
35+ changed_when : true
2636...
You can’t perform that action at this time.
0 commit comments