Skip to content

Commit 8605bfd

Browse files
Remove ginkgo download and tools.go:
Neither of these are used or needed. Signed-off-by: Jacob Weinstock <[email protected]>
1 parent eef7128 commit 8605bfd

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,8 @@ KUSTOMIZE_VER := v5.7.1
5252
KUSTOMIZE_BIN := kustomize
5353
KUSTOMIZE := $(TOOLS_BIN_DIR)/$(KUSTOMIZE_BIN)-$(KUSTOMIZE_VER)
5454

55-
GINKGO_VER := v2.23.4
56-
GINKGO_BIN := ginkgo
57-
GINKGO := $(TOOLS_BIN_DIR)/$(GINKGO_BIN)-$(GINKGO_VER)
58-
5955
.PHONY: tools
60-
tools: $(GINKGO) $(KUSTOMIZE) $(GOLANGCI_LINT) ## Install build tools
56+
tools: $(KUSTOMIZE) $(GOLANGCI_LINT) ## Install build tools
6157

6258
TIMEOUT := $(shell command -v timeout || command -v gtimeout)
6359

@@ -123,11 +119,6 @@ $(KIND): ## Build kind
123119
ln -sf "$(KIND)" "$(TOOLS_BIN_DIR)/$(KIND_BIN)"
124120
chmod +x "$(TOOLS_BIN_DIR)/$(KIND_BIN)" "$(KIND)"
125121

126-
$(GINKGO): ## Build ginkgo
127-
mkdir -p $(TOOLS_BIN_DIR)
128-
GOBIN=$(TOOLS_BIN_DIR) go install github.com/onsi/ginkgo/v2/ginkgo@${GINKGO_VER}
129-
@mv $(TOOLS_BIN_DIR)/ginkgo $(GINKGO)
130-
131122
$(KUSTOMIZE): ## Install kustomize
132123
mkdir -p $(TOOLS_BIN_DIR)
133124
GOBIN=$(TOOLS_BIN_DIR) go install sigs.k8s.io/kustomize/kustomize/v5@${KUSTOMIZE_VER}

tools.go

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)