Skip to content

Commit ee2a2a4

Browse files
Update reusable_multi_numa.yml
1 parent 1c20824 commit ee2a2a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/reusable_multi_numa.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,23 @@ jobs:
5050
run: cmake --build ${{github.workspace}}/build -j $(nproc)
5151

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

5757
# On RHEL/SLES, hwloc version is just a little too low.
5858
# Skip some tests until we upgrade hwloc and update CMake to properly handle local hwloc installation.
5959
# TODO: fix issue #560
6060
- name: Run tests (on RHEL/SLES)
61-
if: (matrix.os == 'rhel-9.1') || (matrix.os == 'sles-15')
61+
if: (matrix.os == 'rhel-9.1') || (matrix.os == 'sles-15-test')
6262
working-directory: ${{github.workspace}}/build
6363
run: |
6464
ctest --output-on-failure --test-dir test -E "test_provider_os_memory_multiple_numa_nodes"
6565
./test/test_provider_os_memory_multiple_numa_nodes \
6666
--gtest_filter="-*checkModeLocal/*:*checkModePreferredEmptyNodeset/*:testNuma.checkModeInterleave"
6767
6868
- name: Run NUMA tests under valgrind
69-
if: (matrix.os != 'rhel-9.1') && (matrix.os != 'sles-15')
69+
if: (matrix.os != 'rhel-9.1') && (matrix.os != 'sles-15-test')
7070
run: |
7171
${{github.workspace}}/test/test_valgrind.sh ${{github.workspace}} ${{env.BUILD_DIR}} memcheck "${{env.NUMA_TESTS}}"
7272
${{github.workspace}}/test/test_valgrind.sh ${{github.workspace}} ${{env.BUILD_DIR}} drd "${{env.NUMA_TESTS}}"

0 commit comments

Comments
 (0)