Skip to content

Commit

Permalink
details
Browse files Browse the repository at this point in the history
  • Loading branch information
sergicastro committed Apr 2, 2024
1 parent 660966f commit 42e48bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 42e48bc

Please sign in to comment.