From ed77a76556d348befdfb0f85e4a082f5f52c4d95 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Mon, 26 Aug 2024 20:06:58 +0100 Subject: [PATCH] Find the report file --- ci/report_result.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ci/report_result.yml b/ci/report_result.yml index 3375b9a7..3929d2bf 100644 --- a/ci/report_result.yml +++ b/ci/report_result.yml @@ -1,9 +1,18 @@ --- +- name: find the test run results + ansible.builtin.shell: + cmd: | + find ~ -name *.out + register: file + +- ansible.builtin.debug: + var: file.stdout + - name: Move callback_plugin result to log dir ansible.builtin.shell: cmd: | cp ~/test_run_result.out {{ test_dir }}/test_run_result.log - # cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log + cp ~/summary_results.log {{ autoscaling_logs_dir }}/summary_results.log - name: Grep the number of failed tasks ansible.builtin.shell: