diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9714810..1914947 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,15 +14,10 @@ env: GOPROXY: https://proxy.golang.org jobs: - test: + test: ## This jobs takes around 2h to complete. Let's not make this a requirement for PRs until we can make it faster. runs-on: ubuntu-latest env: - IMG: local/kubegres:test PLATFORMS: linux/amd64 steps: - - uses: docker/setup-qemu-action@v3 - with: - platforms: amd64 - - uses: docker/setup-buildx-action@v3 - uses: actions/checkout@v4 - run: make test diff --git a/Makefile b/Makefile index 10b2e67..081b8cc 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ KIND_VERSION ?= v0.19.0 KUBEBUILDER_TOOLS_VERSION := 1.24.2 ## Kubebuilder Tools (etcd, kube-apiserver) -# using tar instead of go install to be able to pin the version +# using tar instead of go install to be able to pin the version, since latest versions are not always compatible with 1.20 go version KUBEBUILDER_TOOLS_OS ?= $(shell go env GOOS) KUBEBUILDER_TOOLS_ARCH ?= $(shell go env GOARCH) KUBEBUILDER_TOOLS_TGZ := $(LOCALBIN)/kubebuilder-tools-$(KUBEBUILDER_TOOLS_VERSION)-$(KUBEBUILDER_TOOLS_OS)-$(KUBEBUILDER_TOOLS_ARCH).tar.gz