Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions .github/workflows/libcxx-build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ jobs:
steps:
- uses: actions/checkout@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@v3
Expand All @@ -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 }}
Loading