From 9eb430e450ab0fb453eae608ddca99eec506f822 Mon Sep 17 00:00:00 2001 From: Oksana Salyk Date: Tue, 3 Sep 2024 15:29:42 +0200 Subject: [PATCH] common: install debug version --- utils/gha-runners/run-ras-linux.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/utils/gha-runners/run-ras-linux.yml b/utils/gha-runners/run-ras-linux.yml index 95c22a0e2e..db0f2f5ca9 100644 --- a/utils/gha-runners/run-ras-linux.yml +++ b/utils/gha-runners/run-ras-linux.yml @@ -76,6 +76,7 @@ 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: @@ -83,6 +84,7 @@ - "{{ test_dir_path }}" - "{{ pmdk_install_dir_path }}" - "{{ pmdk_tests_build_dir_path }}" + - "{{ pmdk_debug_install_dir_path }}" - "{{ logs_dir_path }}" repo: @@ -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 }}"