@@ -33,11 +33,13 @@ jobs:
33
33
steps :
34
34
- uses : actions/checkout@v4
35
35
36
- - name : Build the Linux builder image and the Android builder image
36
+ - name : Build the Linux builder image
37
37
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
41
43
42
44
- name : Log in to GitHub Container Registry
43
45
uses : docker/login-action@v3
@@ -49,15 +51,15 @@ jobs:
49
51
- name : Push the Linux builder image
50
52
if : github.event_name == 'push'
51
53
working-directory : libcxx/utils/ci
52
- run :
53
- - docker compose push actions-builder
54
+ run : |
55
+ docker compose push actions-builder
54
56
env :
55
57
TAG : libcxx-linux-builder:${{ github.sha }}
56
58
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