Skip to content

Commit cf46d4d

Browse files
committed
update WF
1 parent 6a5afdb commit cf46d4d

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/docker-publish.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ jobs:
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:

kube/Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ ENV SCALA_VERSION=2.12
3535
RUN mkdir /comet
3636
WORKDIR /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
4240
COPY rust-toolchain.toml /comet/rust-toolchain.toml
@@ -62,7 +60,12 @@ RUN mkdir -p /root/.m2 && \
6260

6361
RUN 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
6871
RUN cd /comet \

0 commit comments

Comments
 (0)