temporaryly close the testing of package kubecm to avoid disk unavailable issue (#3007)

This commit is contained in:
海亮 2023-10-10 14:09:58 +08:00 committed by GitHub
parent 35e5f1f204
commit d10d96800f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -12,6 +12,7 @@ for file in `find . -name go.mod`; do
# package kuhecm needs golang >= v1.18
if [ "kubecm" = $(basename $dirpath) ]; then
continue 1
if ! go version|grep -q "1.19"; then
echo "ignore kubecm as go version: $(go version)"
continue 1

View File

@ -183,14 +183,14 @@ jobs:
- name: Start Consul Containers
run: docker-compose -f ".github/workflows/consul/docker-compose.yml" up -d --build
- name: Start Minikube
uses: medyagh/setup-minikube@master
# - name: Start Minikube
# uses: medyagh/setup-minikube@master
- name: Setup Golang ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
cache: false
cache-dependency-path: '**/go.sum'
- name: Before Script