Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

docker: bump valgrind to release 3.20 #15

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/images/install-valgrind.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2016-2022, Intel Corporation
# Copyright 2016-2023, Intel Corporation

#
# install-valgrind.sh - installs valgrind with pmemcheck
Expand All @@ -17,8 +17,8 @@ build_dir=$(mktemp -d -t valgrind-XXX)
git clone https://github.com/pmem/valgrind.git ${build_dir}
pushd ${build_dir}

# pmem-3.19: Merge pull request #88 from lukaszstolarczuk/pmem-3.19; 29.04.2022
git checkout 541e1c3d22b34769ad29fa75ab29cce2a65bfa91
# pmem-3.20: "-> 3.20.0 final"; 03.01.2023
git checkout b21a0ab76d2fbc4f26d2b7c7e20df63d63f0a31b

./autogen.sh
echo "### Valgrind autogen complete ###"
Expand Down