File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 14
14
15
15
strategy :
16
16
matrix :
17
- os : [ubuntu-22.04]
17
+ os : [ubuntu-22.04, rhel-9.1 ]
18
18
runs-on : ["DSS-MULTI-NUMA", "DSS-${{matrix.os}}"]
19
19
20
20
steps :
43
43
run : cmake --build ${{github.workspace}}/build -j $(nproc)
44
44
45
45
- name : Run tests
46
+ if : matrix.os != 'rhel-9.1'
46
47
working-directory : ${{github.workspace}}/build
47
48
run : ctest --output-on-failure --test-dir test
49
+
50
+ # On RHEL, hwloc version is just a little too low.
51
+ # Skip some tests until we upgrade hwloc and update CMake to properly handle local hwloc installation.
52
+ # TODO: fix issue #560
53
+ - name : Run tests (on RHEL)
54
+ if : matrix.os == 'rhel-9.1'
55
+ working-directory : ${{github.workspace}}/build
56
+ run : |
57
+ ctest --output-on-failure --test-dir test -E "umf-provider_os_memory_multiple_numa_nodes"
58
+ ./test/umf_test-provider_os_memory_multiple_numa_nodes \
59
+ --gtest_filter="-*checkModeLocal/*:*checkModePreferredEmptyNodeset/*:testNuma.checkModeInterleave"
You can’t perform that action at this time.
0 commit comments