[libcxx-commits] [libcxx] [libc++] Fixes run-buildbot-container. (PR #84644)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Mar 9 09:42:49 PST 2024
https://github.com/mordante created https://github.com/llvm/llvm-project/pull/84644
Pulls the proper docker image instead of a non-existing image.
>From 33298b544e5fa3e230f9daa2cfaee23a764e6090 Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Sat, 9 Mar 2024 18:41:07 +0100
Subject: [PATCH] [libc++] Fixes run-buildbot-container.
Pulls the proper docker image instead of a non-existing image.
---
libcxx/utils/ci/run-buildbot-container | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libcxx/utils/ci/run-buildbot-container b/libcxx/utils/ci/run-buildbot-container
index 7c00b88097f17b..b818883349e1cd 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/buildkite-builder
+docker run -it --volume "${MONOREPO_ROOT}:/llvm" --workdir "/llvm" --cap-add=SYS_PTRACE ghcr.io/libcxx/buildkite-builder \
bash -c 'git config --global --add safe.directory /llvm ; exec bash'
More information about the libcxx-commits
mailing list