[llvm] [libc++] Also build the Android Docker image in the workflow (PR #116484)
Louis Dionne via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 27 11:51:13 PST 2024
https://github.com/ldionne updated https://github.com/llvm/llvm-project/pull/116484
>From ee85acf1edce93202c8fc5471cc957136f8f2295 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Sat, 16 Nov 2024 12:18:57 +0100
Subject: [PATCH] [libc++] Also build the Android Docker image in the workflow
---
.github/workflows/libcxx-build-containers.yml | 24 +++++++++----------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml
index 2d040f712ce592..c459d96ad3a0aa 100644
--- a/.github/workflows/libcxx-build-containers.yml
+++ b/.github/workflows/libcxx-build-containers.yml
@@ -41,11 +41,11 @@ jobs:
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: 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
@@ -62,10 +62,10 @@ jobs:
env:
TAG: ${{ github.sha }}
- # - name: Push the Android builder image
- # if: github.event_name == 'push'
- # working-directory: libcxx/utils/ci
- # run: |
- # docker compose push android-buildkite-builder
- # env:
- # TAG: ${{ github.sha }}
+ - name: Push the Android builder image
+ if: github.event_name == 'push'
+ working-directory: libcxx/utils/ci
+ run: |
+ docker compose push android-buildkite-builder
+ env:
+ TAG: ${{ github.sha }}
More information about the llvm-commits
mailing list