diff --git a/utils/gha-runners/run-ras-linux.yml b/utils/gha-runners/run-ras-linux.yml index 5dfbf446bc..b46573c1dd 100644 --- a/utils/gha-runners/run-ras-linux.yml +++ b/utils/gha-runners/run-ras-linux.yml @@ -202,7 +202,7 @@ - name: "Build PMDK" shell: - cmd: "make -j install prefix={{ pmdk_install_dir_path }}" + cmd: "make -j install prefix={{ pmdk_install_dir_path }} TEST_BUILD=debug" chdir: "{{ repo.pmdk.target_dir }}" executable: "{{ bash_path }}" register: output @@ -311,11 +311,11 @@ var: phase_2 # 'always' section makes sure that the temporary files are deleted regardless of the results. - # always: - # - name: "Delete temporary files after the job" - # file: - # path: "{{ item }}" - # state: absent - # with_items: - # - "/tmp/tmp.fstab" - # - "{{ working_dir_path }}" + always: + - name: "Delete temporary files after the job" + file: + path: "{{ item }}" + state: absent + with_items: + - "/tmp/tmp.fstab" + - "{{ working_dir_path }}"