Skip to content

Commit 24045c2

Browse files
committed
Disable jemalloc pool on RHEL (autoconf cannot be installed)
Disable the jemalloc pool on RHEL, because the autoconf package cannot be installed, since the RHEL subscription expired. Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
1 parent 1369352 commit 24045c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/reusable_multi_numa.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Get information about platform
3434
run: .github/scripts/get_system_info.sh
3535

36+
# jemalloc pool on RHEL is disabled, because the autoconf package cannot be installed, since the RHEL subscription expired
3637
- name: Configure build
3738
run: >
3839
cmake
@@ -45,8 +46,9 @@ jobs:
4546
-DUMF_BUILD_TESTS=ON
4647
-DUMF_DEVELOPER_MODE=ON
4748
-DUMF_BUILD_LIBUMF_POOL_DISJOINT=ON
48-
-DUMF_BUILD_LIBUMF_POOL_JEMALLOC=ON
4949
-DUMF_TESTS_FAIL_ON_SKIP=ON
50+
${{ matrix.os == 'ubuntu-22.04' && '-DUMF_BUILD_LIBUMF_POOL_JEMALLOC=ON' || '' }}
51+
${{ matrix.os == 'rhel-9.1' && '-DUMF_BUILD_LIBUMF_POOL_JEMALLOC=OFF' || '' }}
5052
${{ matrix.build_type == 'Debug' && matrix.os == 'ubuntu-22.04' && '-DUMF_USE_COVERAGE=ON' || '' }}
5153
5254
- name: Build UMF

0 commit comments

Comments
 (0)