[llvm] [libc++] Adjust the docker-compose file for libc++ action builders (PR #116366)

Louis Dionne via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 15 01:56:08 PST 2024


https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/116366

None

>From 14a9878d3573bb1cb64e444a16bd747f87837bb7 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Fri, 15 Nov 2024 10:54:26 +0100
Subject: [PATCH] WIP

---
 .github/workflows/libcxx-build-containers.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml
index 92b2e3056da9ac..0e79b00824ac03 100644
--- a/.github/workflows/libcxx-build-containers.yml
+++ b/.github/workflows/libcxx-build-containers.yml
@@ -36,10 +36,14 @@ jobs:
     - name: Build the Linux builder image
       working-directory: libcxx/utils/ci
       run: docker compose build actions-builder
+      env:
+        TAG: ${{ github.sha }}
 
     # - name: Build the Android builder image
     #   working-directory: libcxx/utils/ci
     #   run: docker compose build android-buildkite-builder
+    #   env:
+    #     TAG: ${{ github.sha }}
 
     - name: Log in to GitHub Container Registry
       uses: docker/login-action at v3
@@ -49,7 +53,7 @@ jobs:
         password: ${{ secrets.GITHUB_TOKEN }}
 
     - name: Push the Linux builder image
-      if: github.event_name == 'push'
+      # if: github.event_name == 'push'
       working-directory: libcxx/utils/ci
       run: |
         docker compose push actions-builder



More information about the llvm-commits mailing list