Skip to content

Commit

Permalink
common: build debug ver PMDK
Browse files Browse the repository at this point in the history
  • Loading branch information
osalyk committed Aug 23, 2024
1 parent 0643f86 commit b4e6bd2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions utils/gha-runners/run-ras-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -217,7 +217,7 @@
- name: "Build pmdk-tests"
shell:
cmd: "cmake '{{ repo.pmdk_tests.target_dir }}' && make -j"
cmd: "cmake -DCMAKE_BUILD_TYPE=DEBUG '{{ repo.pmdk_tests.target_dir }}' && make -j"
chdir: "{{ pmdk_tests_build_dir_path }}"
executable: "{{ bash_path }}"
environment:
Expand Down Expand Up @@ -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 }}"

0 comments on commit b4e6bd2

Please sign in to comment.