[libcxx-commits] [libcxx] [libcxx] Bump Container Runner Version (PR #147831)
Aiden Grossman via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 9 14:56:13 PDT 2025
boomanaiden154 wrote:
I also tried an image built locally with this config and it looks like one of the stage one builds is failing with ToT clang. For now I've pushed https://github.com/llvm/llvm-zorg/commit/817d0473434253b3fa76d2eec7950c04f93a98f9 which uses a container version based on the current one used with just the runner version upgraded produced with the following script:
```
FROM ghcr.io/llvm/libcxx-linux-builder:b060022103f551d8ca1dad84122ef73927c86512
RUN rm -rf ./*
ENV GITHUB_RUNNER_VERSION=2.326.0
RUN curl -O -L https://github.com/actions/runner/releases/download/v$GITHUB_RUNNER_VERSION/actions-runner-linux-x64-$GITHUB_RUNNER_VERSION.tar.gz && \
tar xzf ./actions-runner-linux-x64-$GITHUB_RUNNER_VERSION.tar.gz && \
rm ./actions-runner-linux-x64-$GITHUB_RUNNER_VERSION.tar.gz
```
This change still is needed for the next time the container gets bumped though.
https://github.com/llvm/llvm-project/pull/147831
More information about the libcxx-commits
mailing list