Skip to content

Commit da2e159

Browse files
[CI] properly set hwloc related params in basic.yml
"default" params are not propagated into include's.
1 parent 4b3dd60 commit da2e159

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/basic.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,32 @@ jobs:
3232
shared_library: 'OFF'
3333
level_zero_provider: 'ON'
3434
install_tbb: 'ON'
35+
disable_hwloc: 'OFF'
36+
link_hwloc_statically: 'OFF'
3537
- os: 'ubuntu-22.04'
3638
build_type: Release
3739
compiler: {c: clang, cxx: clang++}
3840
shared_library: 'OFF'
3941
level_zero_provider: 'ON'
4042
install_tbb: 'ON'
43+
disable_hwloc: 'OFF'
44+
link_hwloc_statically: 'OFF'
4145
- os: 'ubuntu-22.04'
4246
build_type: Release
4347
compiler: {c: gcc, cxx: g++}
4448
shared_library: 'ON'
4549
level_zero_provider: 'ON'
4650
install_tbb: 'ON'
51+
disable_hwloc: 'OFF'
52+
link_hwloc_statically: 'OFF'
4753
- os: 'ubuntu-22.04'
4854
build_type: Debug
4955
compiler: {c: gcc, cxx: g++}
5056
shared_library: 'ON'
5157
level_zero_provider: 'ON'
5258
install_tbb: 'ON'
59+
disable_hwloc: 'OFF'
60+
link_hwloc_statically: 'OFF'
5361
# test level_zero_provider='OFF'
5462
- os: 'ubuntu-22.04'
5563
build_type: Release
@@ -64,26 +72,32 @@ jobs:
6472
shared_library: 'ON'
6573
level_zero_provider: 'ON'
6674
install_tbb: 'ON'
75+
disable_hwloc: 'OFF'
76+
link_hwloc_statically: 'OFF'
6777
# test without installing TBB
6878
- os: 'ubuntu-22.04'
6979
build_type: Release
7080
compiler: {c: gcc, cxx: g++}
7181
shared_library: 'ON'
7282
level_zero_provider: 'ON'
7383
install_tbb: 'OFF'
84+
disable_hwloc: 'OFF'
85+
link_hwloc_statically: 'OFF'
7486
- os: 'ubuntu-22.04'
7587
build_type: Debug
7688
compiler: {c: gcc, cxx: g++}
7789
shared_library: 'ON'
7890
level_zero_provider: 'ON'
7991
install_tbb: 'ON'
8092
disable_hwloc: 'ON'
93+
link_hwloc_statically: 'OFF'
8194
- os: 'ubuntu-22.04'
8295
build_type: Release
8396
compiler: {c: gcc, cxx: g++}
8497
shared_library: 'ON'
8598
level_zero_provider: 'ON'
8699
install_tbb: 'ON'
100+
disable_hwloc: 'OFF'
87101
link_hwloc_statically: 'ON'
88102
runs-on: ${{matrix.os}}
89103

0 commit comments

Comments
 (0)