Skip to content

Commit a234364

Browse files
[CI] Update get_system_info.sh zypper part
and move the step gathering info to the end (in multi numa CI).
1 parent ce6c5da commit a234364

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/scripts/get_system_info.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function check_L0_version {
1515
fi
1616

1717
if command -v zypper &> /dev/null; then
18-
zypper se level-zero && return
18+
zypper -n se level-zero || true
1919
fi
2020

2121
echo "level-zero not installed"

.github/workflows/reusable_multi_numa.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ jobs:
3131
with:
3232
fetch-depth: 0
3333

34-
- name: Get information about platform
35-
run: .github/scripts/get_system_info.sh
36-
3734
- name: Configure build
3835
run: >
3936
cmake
@@ -91,3 +88,7 @@ jobs:
9188
with:
9289
name: ${{env.COVERAGE_NAME}}-${{matrix.os}}-shared-${{matrix.shared_library}}
9390
path: ${{env.COVERAGE_DIR}}
91+
92+
- name: Get information about platform
93+
if: always()
94+
run: .github/scripts/get_system_info.sh

0 commit comments

Comments
 (0)