Skip to content

Commit 8b2ef98

Browse files
committed
Merge branch 'main' into jd_rhds-main_sync
2 parents 4c09caa + 35e9498 commit 8b2ef98

File tree

44 files changed

+21241
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+21241
-57
lines changed

.github/workflows/build-notebooks-TEMPLATE.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ jobs:
9090
with:
9191
cache-dependency-path: "**/*.sum"
9292

93+
- run: sudo apt-get update
94+
9395
- name: Login to GitHub Container Registry
9496
uses: docker/login-action@v3
9597
with:
@@ -129,6 +131,8 @@ jobs:
129131
130132
df -h
131133
134+
- run: sudo apt-get install -y btrfs-compsize
135+
132136
- name: Mount lvm overlay for podman builds
133137
run: |
134138
df -h
@@ -280,6 +284,9 @@ jobs:
280284

281285
- name: "push|schedule|workflow_dispatch: make ${{ inputs.target }}"
282286
run: |
287+
# print running stats on disk occupancy
288+
(while true; do df -h | grep "${HOME}/.local/share/containers"; sleep 30; done) &
289+
283290
make ${{ inputs.target }}
284291
if: ${{ fromJson(inputs.github).event_name == 'push' ||
285292
fromJson(inputs.github).event_name == 'schedule' ||
@@ -289,6 +296,9 @@ jobs:
289296
CONTAINER_BUILD_CACHE_ARGS: "--cache-from ${{ env.CACHE }} --cache-to ${{ env.CACHE }}"
290297
- name: "pull_request: make ${{ inputs.target }}"
291298
run: |
299+
# print running stats on disk occupancy
300+
(while true; do df -h | grep "${HOME}/.local/share/containers"; sleep 30; done) &
301+
292302
make ${{ inputs.target }}
293303
if: "${{ fromJson(inputs.github).event_name == 'pull_request' ||
294304
fromJson(inputs.github).event_name == 'pull_request_target' }}"
@@ -605,3 +615,6 @@ jobs:
605615

606616
- run: df -h
607617
if: "${{ !cancelled() }}"
618+
619+
- run: sudo compsize -x "${HOME}/.local/share/containers"
620+
if: "${{ !cancelled() }}"

0 commit comments

Comments
 (0)