We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce6c5da commit a234364Copy full SHA for a234364
.github/scripts/get_system_info.sh
@@ -15,7 +15,7 @@ function check_L0_version {
15
fi
16
17
if command -v zypper &> /dev/null; then
18
- zypper se level-zero && return
+ zypper -n se level-zero || true
19
20
21
echo "level-zero not installed"
.github/workflows/reusable_multi_numa.yml
@@ -31,9 +31,6 @@ jobs:
31
with:
32
fetch-depth: 0
33
34
- - name: Get information about platform
35
- run: .github/scripts/get_system_info.sh
36
-
37
- name: Configure build
38
run: >
39
cmake
@@ -91,3 +88,7 @@ jobs:
91
88
92
89
name: ${{env.COVERAGE_NAME}}-${{matrix.os}}-shared-${{matrix.shared_library}}
93
90
path: ${{env.COVERAGE_DIR}}
+
+ - name: Get information about platform
+ if: always()
94
+ run: .github/scripts/get_system_info.sh
0 commit comments