Skip to content

Commit

Permalink
common: install debug version
Browse files Browse the repository at this point in the history
  • Loading branch information
osalyk committed Sep 3, 2024
1 parent a64e11c commit 9eb430e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions utils/gha-runners/run-ras-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,15 @@
logs_dir_path: "/var/tmp/raslogs"
test_dir_path: "{{ working_dir_path }}/testDir"
pmdk_install_dir_path: "{{ working_dir_path }}/pmdkInstallTarget"
pmdk_debug_install_dir_path: "{{ working_dir_path }}/debug_pmdk"
pmdk_tests_build_dir_path: "{{ working_dir_path }}/pmdkTestsBuild"

workspace_dirs:
- "{{ working_dir_path }}"
- "{{ test_dir_path }}"
- "{{ pmdk_install_dir_path }}"
- "{{ pmdk_tests_build_dir_path }}"
- "{{ pmdk_debug_install_dir_path }}"
- "{{ logs_dir_path }}"

repo:
Expand Down Expand Up @@ -200,6 +202,13 @@
force: yes
with_dict: "{{ repo }}"

- name: "Build DEBUG PMDK"
shell:
cmd: "make DEBUG=1 -j install prefix={{ pmdk_debug_install_dir_path }}"
chdir: "{{ repo.pmdk.target_dir }}"
executable: "{{ bash_path }}"
register: output

- name: "Build PMDK"
shell:
cmd: "make -j install prefix={{ pmdk_install_dir_path }}"
Expand Down

0 comments on commit 9eb430e

Please sign in to comment.