Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add debug info for sanitized builds. #4304

Merged
merged 1 commit into from
Jan 2, 2025
Merged
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
4 changes: 4 additions & 0 deletions docker/Dockerfile.almalinux8
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ RUN dnf install -y dnf-plugins-core && \
RUN --mount=type=bind,target=/context-root,source=.,ro \
if [[ -d /context-root/rpms ]]; then echo -e "[vespa-rpms-local]\nname=Local Vespa RPMs\nbaseurl=file:///context-root/rpms/\nenabled=1\ngpgcheck=0" > /etc/yum.repos.d/vespa-rpms-local.repo; fi && \
dnf -y install vespa-systemtest-tools && \
if test "$(/opt/vespa/bin/vespa-print-default sanitizers)" != none; then \
dnf debuginfo-install -y vespa-abseil-cpp vespa-libzstd vespa-lz4 vespa-onnxruntime vespa-openblas vespa-openssl vespa-protobuf glibc libatomic libffi libgcc libgfortran libicu libstdc++ llvm-libs ncurses-libs re2 xxhash-libs zlib && \
dnf debuginfo-install -y vespa vespa-base-libs vespa-libs vespa-malloc; \
fi && \
dnf clean all && \
rm -f /etc/yum.repos.d/vespa-rpms-local.repo && \
rm -rf /var/cache/dnf
Expand Down
Loading