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

via libcxx-commits libcxx-commits at lists.llvm.org
Sat Mar 9 09:43:19 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Mark de Wever (mordante)

<details>
<summary>Changes</summary>

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

---
Full diff: https://github.com/llvm/llvm-project/pull/84644.diff


1 Files Affected:

- (modified) libcxx/utils/ci/run-buildbot-container (+2-2) 


``````````diff
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'

``````````

</details>


https://github.com/llvm/llvm-project/pull/84644


More information about the libcxx-commits mailing list