Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit cd28a59

Browse files
docker: install valgrind from an upstream package on Fedora Rawhide
it's because of an automake bug in Fedora Rawhide docker image: https://bugzilla.redhat.com/show_bug.cgi?id=1903527 I hope it's temporary change and it will be fixed on next release.
1 parent ad7094e commit cd28a59

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

utils/docker/images/Dockerfile.fedora-rawhide

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ ARG LIBPMEMOBJ_CPP_DEPS="\
3535
libpmemobj-devel \
3636
tbb-devel"
3737

38-
# pmem's Valgrind (optional; valgrind-devel may be used instead)
39-
ARG VALGRIND_DEPS="\
40-
autoconf \
41-
automake"
42-
4338
# Examples (optional)
4439
ARG EXAMPLES_DEPS="\
4540
ncurses-devel \
@@ -50,11 +45,14 @@ ARG DOC_DEPS="\
5045
doxygen"
5146

5247
# Tests (optional)
48+
# XXX: Valgrind is installed from upstream package, because of:
49+
# https://bugzilla.redhat.com/show_bug.cgi?id=1903527
5350
ARG TESTS_DEPS="\
5451
gdb \
5552
libpmem-devel \
5653
libunwind-devel \
57-
pmempool"
54+
pmempool \
55+
valgrind-devel"
5856

5957
# Misc for our builds/CI (optional)
6058
ARG MISC_DEPS="\

0 commit comments

Comments
 (0)