[libcxx-commits] [libcxx] 7ecd4d2 - [libc++] Add LLDB data formatters dependencies to the CI image
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Sep 12 07:57:11 PDT 2022
Author: Louis Dionne
Date: 2022-09-12T10:56:54-04:00
New Revision: 7ecd4d2b7c0acb809c9f2f976d31ad0f5541d8c6
URL: https://github.com/llvm/llvm-project/commit/7ecd4d2b7c0acb809c9f2f976d31ad0f5541d8c6
DIFF: https://github.com/llvm/llvm-project/commit/7ecd4d2b7c0acb809c9f2f976d31ad0f5541d8c6.diff
LOG: [libc++] Add LLDB data formatters dependencies to the CI image
This will be required in order to add a CI job running the LLDB
data formatters.
Added:
Modified:
libcxx/utils/ci/Dockerfile
Removed:
################################################################################
diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index eaa58633a26aa..97261825f0a39 100644
--- a/libcxx/utils/ci/Dockerfile
+++ b/libcxx/utils/ci/Dockerfile
@@ -38,6 +38,9 @@ RUN apt-get update && apt-get install -y bash curl
# Install various tools used by the build or the test suite
RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils python3-psutil git gdb
+# Install dependencies required to run the LLDB data formatter tests
+RUN apt-get update && apt-get install -y python3 python3-dev libpython3-dev uuid-dev libncurses5-dev swig3.0 libxml2-dev libedit-dev
+
# Locales for gdb and localization tests
RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \
language-pack-ja language-pack-ru \
More information about the libcxx-commits
mailing list