File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,11 @@ jobs:
126
126
sudo apt-get update
127
127
sudo apt-get install -y clang cmake libnuma-dev lcov
128
128
129
+ - name : Install hwloc
130
+ if : matrix.disable_hwloc == 'OFF'
131
+ run : |
132
+ sudo apt-get install -y libhwloc-dev
133
+
129
134
- name : Install TBB apt package
130
135
if : matrix.install_tbb == 'ON'
131
136
run : |
@@ -144,9 +149,6 @@ jobs:
144
149
if : matrix.compiler.cxx == 'g++-7'
145
150
run : sudo apt-get install -y ${{matrix.compiler.cxx}}
146
151
147
- - name : Install libhwloc
148
- run : .github/scripts/install_hwloc.sh
149
-
150
152
- name : Get UMF version
151
153
run : |
152
154
VERSION=$(git describe --tags --abbrev=0 | grep -oP '\d+\.\d+\.\d+')
Original file line number Diff line number Diff line change 23
23
- name : Install apt packages
24
24
run : |
25
25
sudo apt-get update
26
- sudo apt-get install -y clang cmake hwloc libnuma-dev libtbb-dev
26
+ sudo apt-get install -y clang cmake hwloc libhwloc-dev libnuma-dev libtbb-dev
27
27
28
28
- name : Checkout "tag" UMF version
29
29
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32
32
ref : refs/tags/${{inputs.tag}}
33
33
path : ${{github.workspace}}/tag_version
34
34
35
- - name : Install libhwloc
36
- working-directory : ${{github.workspace}}/tag_version
37
- run : .github/scripts/install_hwloc.sh
38
-
39
35
- name : Checkout latest UMF version
40
36
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41
37
with :
You can’t perform that action at this time.
0 commit comments