Skip to content

Commit ed77a76

Browse files
committed
Find the report file
1 parent 6eeb1e5 commit ed77a76

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

ci/report_result.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
---
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+
211
- name: Move callback_plugin result to log dir
312
ansible.builtin.shell:
413
cmd: |
514
cp ~/test_run_result.out {{ test_dir }}/test_run_result.log
6-
# cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log
15+
cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log
716
817
- name: Grep the number of failed tasks
918
ansible.builtin.shell:

0 commit comments

Comments
 (0)