Skip to content

Commit 81b71b6

Browse files
committed
disable umf-mempolicy in compatibility tests
1 parent 1b73163 commit 81b71b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/reusable_compatibility.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,15 @@ jobs:
105105
run: |
106106
cmake --build ${{github.workspace}}/latest_version/build -j $(nproc)
107107
108+
# NOTE: disable "mempolicy" test as it relies on the specyfic memory layout
109+
# of the OS Provider data structure which is incompatible between different
110+
# UMF versions
108111
- name: Run "tag" UMF tests with latest UMF libs (warnings enabled)
109112
working-directory: ${{github.workspace}}/tag_version/build
110113
run: >
111114
UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
112115
LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/
113-
ctest --output-on-failure
116+
ctest --output-on-failure -E "umf-mempolicy"
114117
115118
windows-build:
116119
name: Windows

0 commit comments

Comments
 (0)