[llvm] [libc++] Adjust the workflow file for building a Docker image (PR #116333)
Louis Dionne via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 14 23:41:44 PST 2024
https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/116333
None
>From c24aad22210d97437f977516ce96fee66d35b471 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Fri, 15 Nov 2024 08:41:20 +0100
Subject: [PATCH] [libc++] Adjust the workflow file for building a Docker image
---
.github/workflows/libcxx-build-containers.yml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml
index e55a4f2a11b099..e9fcb565953d10 100644
--- a/.github/workflows/libcxx-build-containers.yml
+++ b/.github/workflows/libcxx-build-containers.yml
@@ -35,9 +35,9 @@ jobs:
- name: Build the Linux builder image and the Android builder image
working-directory: libcxx/utils/ci
- run:
- - docker compose build actions-builder
- - docker compose build android-buildkite-builder
+ run: |
+ docker compose build actions-builder
+ docker compose build android-buildkite-builder
- name: Log in to GitHub Container Registry
uses: docker/login-action at v3
@@ -49,15 +49,15 @@ jobs:
- name: Push the Linux builder image
if: github.event_name == 'push'
working-directory: libcxx/utils/ci
- run:
- - docker compose push actions-builder
+ run: |
+ docker compose push actions-builder
env:
TAG: libcxx-linux-builder:${{ 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
+ run: |
+ docker compose push android-buildkite-builder
env:
TAG: libcxx-android-builder:${{ github.sha }}
More information about the llvm-commits
mailing list