We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eeb1e5 commit ed77a76Copy full SHA for ed77a76
ci/report_result.yml
@@ -1,9 +1,18 @@
1
---
2
+- name: find the test run results
3
+ ansible.builtin.shell:
4
+ cmd: |
5
+ find ~ -name *.out
6
+ register: file
7
+
8
+- ansible.builtin.debug:
9
+ var: file.stdout
10
11
- name: Move callback_plugin result to log dir
12
ansible.builtin.shell:
13
cmd: |
14
cp ~/test_run_result.out {{ test_dir }}/test_run_result.log
- # cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log
15
+ cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log
16
17
- name: Grep the number of failed tasks
18
0 commit comments