[llvm] [libc++] Bump libc++ CI to a more recent version of the Docker image (PR #116558)

via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 17 14:46:20 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-github-workflow

Author: Louis Dionne (ldionne)

<details>
<summary>Changes</summary>

The Docker image was built using the recently introduced Action that builds and pushes to the LLVM Docker registry.

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


1 Files Affected:

- (modified) .github/workflows/libcxx-build-and-test.yaml (+4-4) 


``````````diff
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 964ab654f3fb98..84f0b7592f4e87 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -44,13 +44,13 @@ env:
   GCC_STABLE_VERSION: "13"
   LLVM_SYMBOLIZER_PATH: "/usr/bin/llvm-symbolizer-19"
   CLANG_CRASH_DIAGNOSTICS_DIR: "crash_diagnostics"
-
+  LIBCXX_LINUX_IMAGE_TAG: "0fd6f684b9c84c32d6cbfd9742402e788b2879f1"
 
 jobs:
   stage1:
     if: github.repository_owner == 'llvm'
     runs-on: libcxx-self-hosted-linux
-    container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
+    container: ghcr.io/llvm/libcxx-linux-builder:{{LIBCXX_LINUX_IMAGE_TAG}}
     continue-on-error: false
     strategy:
       fail-fast: false
@@ -87,7 +87,7 @@ jobs:
   stage2:
     if: github.repository_owner == 'llvm'
     runs-on: libcxx-self-hosted-linux
-    container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
+    container: ghcr.io/llvm/libcxx-linux-builder:{{LIBCXX_LINUX_IMAGE_TAG}}
     needs: [ stage1 ]
     continue-on-error: false
     strategy:
@@ -175,7 +175,7 @@ jobs:
         - config: 'generic-msan'
           machine: libcxx-self-hosted-linux
     runs-on: ${{ matrix.machine }}
-    container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
+    container: ghcr.io/llvm/libcxx-linux-builder:{{LIBCXX_LINUX_IMAGE_TAG}}
     steps:
       - uses: actions/checkout at v4
       - name: ${{ matrix.config }}

``````````

</details>


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


More information about the llvm-commits mailing list