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 03384e3 commit b50bac6Copy full SHA for b50bac6
ci/report_result.yml
@@ -5,7 +5,13 @@
5
vars_files:
6
- vars/common.yml
7
tasks:
8
+ - name: Check whether the log dir exists
9
+ ansible.builtin.stat:
10
+ path: "{{ logs_dir }}"
11
+ register: stat_out
12
+
13
- name: Create log dir
14
+ when: not stat_out.stat.exists
15
ansible.builtin.file:
16
path: "{{ logs_dir }}"
17
state: directory
0 commit comments