3232 steps :
3333 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3434
35+ # The default Docker storage location for GitHub Actions doesn't have
36+ # enough disk space, so change it to /mnt, which has more disk space.
37+ - name : Change Docker storage location
38+ run : |
39+ sudo mkdir /mnt/docker
40+ echo '{ "data-root": "/mnt/docker" }' | sudo tee /etc/docker/daemon.json
41+ sudo systemctl restart docker
42+
3543 - name : Build the Linux builder image
3644 working-directory : libcxx/utils/ci
3745 run : |
@@ -40,11 +48,11 @@ jobs:
4048 env :
4149 TAG : ${{ github.sha }}
4250
43- # - name: Build the Android builder image
44- # working-directory: libcxx/utils/ci
45- # run: docker compose build android-buildkite-builder
46- # env:
47- # TAG: ${{ github.sha }}
51+ - name : Build the Android builder image
52+ working-directory : libcxx/utils/ci
53+ run : docker compose build android-buildkite-builder
54+ env :
55+ TAG : ${{ github.sha }}
4856
4957 - name : Log in to GitHub Container Registry
5058 uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
@@ -62,10 +70,10 @@ jobs:
6270 env :
6371 TAG : ${{ github.sha }}
6472
65- # - name: Push the Android builder image
66- # if: github.event_name == 'push'
67- # working-directory: libcxx/utils/ci
68- # run: |
69- # docker compose push android-buildkite-builder
70- # env:
71- # TAG: ${{ github.sha }}
73+ - name : Push the Android builder image
74+ if : github.event_name == 'push'
75+ working-directory : libcxx/utils/ci
76+ run : |
77+ docker compose push android-buildkite-builder
78+ env :
79+ TAG : ${{ github.sha }}
0 commit comments