Skip to content

Commit

Permalink
msan+rr: debian:11/12 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
grooverdan committed Sep 25, 2024
1 parent 852a451 commit 475025b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ci_build_images/msan.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,12 @@ ENV CXXFLAGS="$CFLAGS"

ENV CMAKE_GENERATOR=Ninja
# rr installation + ninja
RUN apt-get install --no-install-recommends -y libcapnp-0.9.2 ninja-build \
RUN . /etc/os-release \
&& if [ "${VERSION_CODENAME}" = "bullseye" ]; then \
apt-get install --no-install-recommends -y libcapnp-0.7.0 ninja-build; \
else \
apt-get install --no-install-recommends -y libcapnp-0.9.2 ninja-build; \
fi \
&& apt-get clean

# unknown rr
Expand Down

0 comments on commit 475025b

Please sign in to comment.