forked from kubeedge/kubeedge
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubeedge#5898 from bzsuni/bz/test/conformance/update
Add an action in the conformance CI to increase available disk space
- Loading branch information
Showing
1 changed file
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|
@@ -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 | ||
|