From ce3feebd33727675544b25affa36b33d82421186 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 17 Mar 2022 17:32:29 -0400 Subject: [PATCH] [libc++] Install psutil on CI builders This will make it possible to add a timeout when running the tests. --- libcxx/utils/ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile index 32fed84..da6dc0f 100644 --- a/libcxx/utils/ci/Dockerfile +++ b/libcxx/utils/ci/Dockerfile @@ -42,7 +42,7 @@ RUN echo 6 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 git gdb +RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils python3-psutil git gdb # Locales for gdb and localization tests RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \ -- 2.7.4