[libcxx-commits] [libcxx] ce3feeb - [libc++] Install psutil on CI builders

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Mar 17 14:33:21 PDT 2022


Author: Louis Dionne
Date: 2022-03-17T17:33:13-04:00
New Revision: ce3feebd33727675544b25affa36b33d82421186

URL: https://github.com/llvm/llvm-project/commit/ce3feebd33727675544b25affa36b33d82421186
DIFF: https://github.com/llvm/llvm-project/commit/ce3feebd33727675544b25affa36b33d82421186.diff

LOG: [libc++] Install psutil on CI builders

This will make it possible to add a timeout when running the tests.

Added: 
    

Modified: 
    libcxx/utils/ci/Dockerfile

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile
index 32fed841aad6f..da6dc0fc3e33c 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 \


        


More information about the libcxx-commits mailing list