Skip to content

Commit

Permalink
[libc++] Adjust the workflow file for building a Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Nov 15, 2024
1 parent 1799d57 commit c24aad2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/libcxx-build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v3
Expand All @@ -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 }}

0 comments on commit c24aad2

Please sign in to comment.