@@ -33,11 +33,13 @@ jobs:
3333 steps :
3434 - uses : actions/checkout@v4
3535
36- - name : Build the Linux builder image and the Android builder image
36+ - name : Build the Linux builder image
3737 working-directory : libcxx/utils/ci
38- run :
39- - docker compose build actions-builder
40- - docker compose build android-buildkite-builder
38+ run : docker compose build actions-builder
39+
40+ # - name: Build the Android builder image
41+ # working-directory: libcxx/utils/ci
42+ # run: docker compose build android-buildkite-builder
4143
4244 - name : Log in to GitHub Container Registry
4345 uses : docker/login-action@v3
@@ -49,15 +51,15 @@ jobs:
4951 - name : Push the Linux builder image
5052 if : github.event_name == 'push'
5153 working-directory : libcxx/utils/ci
52- run :
53- - docker compose push actions-builder
54+ run : |
55+ docker compose push actions-builder
5456 env :
5557 TAG : libcxx-linux-builder:${{ github.sha }}
5658
57- - name : Push the Android builder image
58- if : github.event_name == 'push'
59- working-directory : libcxx/utils/ci
60- run :
61- - docker compose push android-buildkite-builder
62- env :
63- TAG : libcxx-android-builder:${{ github.sha }}
59+ # - name: Push the Android builder image
60+ # if: github.event_name == 'push'
61+ # working-directory: libcxx/utils/ci
62+ # run: |
63+ # docker compose push android-buildkite-builder
64+ # env:
65+ # TAG: libcxx-android-builder:${{ github.sha }}
0 commit comments