[llvm] [libc++] Adjust the workflow file for building a Docker image (PR #116333)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 15 23:25:17 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Louis Dionne (ldionne)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/116333.diff
1 Files Affected:
- (modified) .github/workflows/libcxx-build-containers.yml (+15-13)
``````````diff
diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml
index e55a4f2a11b099..92ef6611055037 100644
--- a/.github/workflows/libcxx-build-containers.yml
+++ b/.github/workflows/libcxx-build-containers.yml
@@ -33,11 +33,13 @@ jobs:
steps:
- uses: actions/checkout at v4
- - name: Build the Linux builder image and the Android builder image
+ - name: Build the Linux 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
+
+ # - name: Build the Android builder image
+ # working-directory: libcxx/utils/ci
+ # run: docker compose build android-buildkite-builder
- name: Log in to GitHub Container Registry
uses: docker/login-action at v3
@@ -49,15 +51,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
- env:
- TAG: libcxx-android-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
+ # env:
+ # TAG: libcxx-android-builder:${{ github.sha }}
``````````
</details>
https://github.com/llvm/llvm-project/pull/116333
More information about the llvm-commits
mailing list