[libcxx-commits] [libcxx] 2e84176 - [libc++] Fixes run-buildbot-container. (#84644)

via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 15 09:28:16 PDT 2024


Author: Mark de Wever
Date: 2024-03-15T17:28:12+01:00
New Revision: 2e8417680a9ab032859c936b2ceb773bb08e08ca

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

LOG: [libc++] Fixes run-buildbot-container. (#84644)

Pulls the proper docker image instead of a non-existing image.

Added: 
    

Modified: 
    libcxx/utils/ci/run-buildbot-container

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/run-buildbot-container b/libcxx/utils/ci/run-buildbot-container
index 7c00b88097f17b..74e7dab81d734d 100755
--- a/libcxx/utils/ci/run-buildbot-container
+++ b/libcxx/utils/ci/run-buildbot-container
@@ -26,6 +26,6 @@ if [[ ! -d "${MONOREPO_ROOT}/libcxx/utils/ci" ]]; then
     echo "Was unable to find the root of the LLVM monorepo; are you running from within the monorepo?"
     exit 1
 fi
-docker pull ghcr.io/libcxx/libcxx-builder
-docker run -it --volume "${MONOREPO_ROOT}:/llvm" --workdir "/llvm" --cap-add=SYS_PTRACE ghcr.io/libcxx/libcxx-builder \
+docker pull ghcr.io/libcxx/actions-builder
+docker run -it --volume "${MONOREPO_ROOT}:/llvm" --workdir "/llvm" --cap-add=SYS_PTRACE ghcr.io/libcxx/actions-builder \
     bash -c 'git config --global --add safe.directory /llvm ; exec bash'


        


More information about the libcxx-commits mailing list