Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/scripts/build-all-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ build_images() {
for img in "${images[@]}"; do
echo "Loading image ${img} to kind cluster..."
kind load docker-image "${img}" --name "${KIND_CLUSTER}"
echo "Removing local image ${img} to free disk space..."
docker rmi "${img}" || echo "Warning: Failed to remove image ${img}, continuing..."
done
}

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/backward-compatibility-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,20 @@ jobs:
cluster_name: ${{ env.KIND_CLUSTER }}
kubectl_version: ${{ matrix.kubernetes-version }}

- name: Free disk space
run: |
echo ">>> System disk usage before cleanup"
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo rm -rf /usr/local/.ghcup
sudo apt-get clean
docker image prune --all --force
echo ">>> System disk usage after cleanup"
df -h

- name: Build current fluid docker images
env:
IMG_REPO: fluidcloudnative
Expand Down
Loading