Skip to content

Commit

Permalink
Merge pull request kubeedge#5898 from bzsuni/bz/test/conformance/update
Browse files Browse the repository at this point in the history
Add an action in the conformance CI to increase available disk space
  • Loading branch information
kubeedge-bot authored Oct 9, 2024
2 parents 8554c10 + 517d8dd commit cda2741
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ jobs:

- name: Install dependencies
run: |
command -v ginkgo || go install github.com/onsi/ginkgo/v2/ginkgo@${{ env.GINKGO_VERSION }}
go install sigs.k8s.io/[email protected]
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.29.5/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl
Expand All @@ -429,9 +428,6 @@ jobs:
with:
fetch-depth: 0

- name: Cleanup images
run: docker system prune -a -f

- name: Retrieve saved kubeedge/build-tools image
uses: actions/download-artifact@v4
with:
Expand All @@ -441,11 +437,23 @@ jobs:
- name: Docker load kubeedge/build-tools image
run: |
docker load < /home/runner/build-tools/build-tools.tar
rm -rf /home/runner/build-tools/build-tools.tar
- name: Enable cri config in containerd service
run: |
containerd config default | sudo tee /etc/containerd/config.toml && sudo systemctl restart containerd.service
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- name: Run conformance e2e
run: |
export KIND_IMAGE=kindest/node:v1.29.2
Expand Down

0 comments on commit cda2741

Please sign in to comment.