File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6363 username : ${{ github.actor }}
6464 password : ${{ secrets.GITHUB_TOKEN }}
6565 - name : Check Disk Space
66- run : df -h
66+ run : du -h --max-depth=1 /
6767 - name : Build and push
6868 uses : docker/build-push-action@v6
6969 with :
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ ENV SCALA_VERSION=2.12
3535RUN mkdir /comet
3636WORKDIR /comet
3737
38- RUN du -h --max-depth=1
38+ RUN du -h --max-depth=1 /
3939
4040# build native code first so that this layer can be re-used
4141# if only Scala code gets modified
@@ -62,7 +62,7 @@ RUN mkdir -p /root/.m2 && \
6262
6363RUN rm -rf /root/.rustup
6464
65- RUN du -h --max-depth=1
65+ RUN du -h --max-depth=1 /
6666
6767# Pick the JDK instead of JRE to compile Comet
6868RUN cd /comet \
You can’t perform that action at this time.
0 commit comments