Skip to content

Commit f726d15

Browse files
author
intel12232289
committed
Add SLES15 to multi NUMA CI
1 parent 522d35a commit f726d15

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/reusable_multi_numa.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Runs tests on multi-numa machine
1+
# Runs tests on multi-numa machines
22
name: MultiNuma
33

44
on: [workflow_call]
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
os: [ubuntu-22.04, rhel-9.1]
22+
os: [ubuntu-22.04, rhel-9.1, sles-15]
2323
build_type: [Debug, Release]
2424
shared_library: ['ON', 'OFF']
2525
runs-on: ["DSS-MULTI-NUMA", "DSS-${{matrix.os}}"]
@@ -53,15 +53,15 @@ jobs:
5353
run: cmake --build ${{github.workspace}}/build -j $(nproc)
5454

5555
- name: Run tests
56-
if: matrix.os != 'rhel-9.1'
56+
if: (matrix.os != 'rhel-9.1') && (matrix.os != 'sles-15')
5757
working-directory: ${{github.workspace}}/build
5858
run: ctest --output-on-failure --test-dir test
5959

60-
# On RHEL, hwloc version is just a little too low.
60+
# On RHEL/SLES, hwloc version is just a little too low.
6161
# Skip some tests until we upgrade hwloc and update CMake to properly handle local hwloc installation.
6262
# TODO: fix issue #560
63-
- name: Run tests (on RHEL)
64-
if: matrix.os == 'rhel-9.1'
63+
- name: Run tests (on RHEL/SLES15)
64+
if: (matrix.os == 'rhel-9.1') || (matrix.os == 'sles-15')
6565
working-directory: ${{github.workspace}}/build
6666
run: |
6767
ctest --output-on-failure --test-dir test -E "umf-provider_os_memory_multiple_numa_nodes"

0 commit comments

Comments
 (0)