File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 6262 registry : ghcr.io
6363 username : ${{ github.actor }}
6464 password : ${{ secrets.GITHUB_TOKEN }}
65- - name : Check Disk Space 0
66- run : du -h --max-depth=1 /usr
67- - name : Check Disk Space 1
68- run : du -h --max-depth=1 /opt
6965 - name : Build and push
7066 uses : docker/build-push-action@v6
7167 with :
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ ENV SCALA_VERSION=2.12
3535RUN mkdir /comet
3636WORKDIR /comet
3737
38- RUN du -h --max-depth=1 /
39-
4038# build native code first so that this layer can be re-used
4139# if only Scala code gets modified
4240COPY rust-toolchain.toml /comet/rust-toolchain.toml
@@ -62,7 +60,12 @@ RUN mkdir -p /root/.m2 && \
6260
6361RUN rm -rf /root/.rustup
6462
65- RUN du -h --max-depth=1 /
63+ RUN du -h --max-depth=1 /usr
64+ RUN du -h --max-depth=1 /comet
65+ RUN du -h --max-depth=1 /opt
66+ RUN du -h --max-depth=1 /root
67+
68+ RUN df -h
6669
6770# Pick the JDK instead of JRE to compile Comet
6871RUN cd /comet \
You can’t perform that action at this time.
0 commit comments