summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAiden Grossman <aidengrossman@google.com>2025-11-15 00:20:51 +0000
committerAiden Grossman <aidengrossman@google.com>2025-11-15 00:21:43 +0000
commit55f634cc7f345a8708f2497c0274144ab1eb3d91 (patch)
treebc50141d72f74f5bf559a57cac00f3071a379e70 /.github
parent21502bddb37ab62e8f51debb3cd20c71e85b6bec (diff)
[libcxx][Github] Attempt to Fix libcxx Container Push
docker-compose could not find the configuration. After this patch it should be able to.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/libcxx-build-containers.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml
index 530e94df976c..eee7bb891394 100644
--- a/.github/workflows/libcxx-build-containers.yml
+++ b/.github/workflows/libcxx-build-containers.yml
@@ -64,7 +64,9 @@ jobs:
- name: Push the images
if: github.event_name == 'push'
- run: docker compose push libcxx-linux-builder-base libcxx-linux-builder libcxx-android-builder
+ run: docker compose --file libcxx/utils/ci/docker/docker-compose.yml push libcxx-linux-builder-base libcxx-linux-builder libcxx-android-builder
+ env:
+ TAG: ${{ github.sha }}
# We create tarballs with the images and upload them as artifacts, since that's useful for testing
# the images when making changes.