Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sles15 to multi numa ci #1007

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
14 changes: 7 additions & 7 deletions .github/workflows/reusable_multi_numa.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Runs tests on multi-numa machine
# Runs tests on multi-numa machines
name: MultiNuma

on: [workflow_call]
Expand All @@ -15,11 +15,11 @@ jobs:
multi_numa:
name: "${{matrix.os}}, ${{matrix.build_type}}, shared=${{matrix.shared_library}}"
# run only on upstream; forks will not have the HW
if: github.repository == 'oneapi-src/unified-memory-framework'
# if: github.repository == 'oneapi-src/unified-memory-framework'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pls uncomment this


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

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

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