Fix Makefile comments for e2e targets
parent
855d55e4db
commit
606335a883
14
Makefile
14
Makefile
|
|
@ -207,8 +207,8 @@ minikube-linux-arm64: out/minikube-linux-arm64 ## Build Minikube for arm 64bit
|
|||
|
||||
.PHONY: minikube-darwin minikube-darwin-amd64 minikube-darwin-arm64
|
||||
minikube-darwin-amd64: out/minikube-darwin-amd64 ## Build Minikube for Darwin x86 64bit
|
||||
minikube-darwin-arm64: out/minikube-darwin-arm64 ## Build Minikube for Darwin arm 64bit
|
||||
minikube-darwin: out/minikube-darwin ## Build Minikube fat binary for Darwin (both arm and x86 64bit)
|
||||
minikube-darwin-arm64: out/minikube-darwin-arm64 ## Build Minikube for Darwin ARM 64bit
|
||||
minikube-darwin: out/minikube-darwin ## Build Minikube fat binary for Darwin (both ARM and x86 64bit)
|
||||
|
||||
.PHONY: minikube-windows-amd64.exe
|
||||
minikube-windows-amd64.exe: out/minikube-windows-amd64.exe ## Build Minikube for Windows 64bit
|
||||
|
|
@ -226,11 +226,11 @@ else
|
|||
endif
|
||||
|
||||
.PHONY: e2e-linux-amd64 e2e-linux-arm64 e2e-darwin-amd64 e2e-windows-amd64.exe
|
||||
e2e-linux-amd64: out/e2e-linux-amd64 ## Execute end-to-end testing for Linux 64bit
|
||||
e2e-linux-arm64: out/e2e-linux-arm64 ## Execute end-to-end testing for Linux ARM 64bit
|
||||
e2e-darwin-amd64: out/e2e-darwin-amd64 ## Execute end-to-end testing for Darwin x86 64bit
|
||||
e2e-darwin-arm64: out/e2e-darwin-arm64 ## Execute end-to-end testing for Darwin arm 64bit
|
||||
e2e-windows-amd64.exe: out/e2e-windows-amd64.exe ## Execute end-to-end testing for Windows 64bit
|
||||
e2e-linux-amd64: out/e2e-linux-amd64 ## build end2end binary for Linux 64bit
|
||||
e2e-linux-arm64: out/e2e-linux-arm64 ## build end2end binary for Linux ARM 64bit
|
||||
e2e-darwin-amd64: out/e2e-darwin-amd64 ## build end2end binary for Darwin x86 64bit
|
||||
e2e-darwin-arm64: out/e2e-darwin-arm64 ## build end2end binary for Darwin ARM 64bit
|
||||
e2e-windows-amd64.exe: out/e2e-windows-amd64.exe ## build end2end binary for Windows 64bit
|
||||
|
||||
out/e2e-%: out/minikube-%
|
||||
GOOS="$(firstword $(subst -, ,$*))" GOARCH="$(lastword $(subst -, ,$(subst $(IS_EXE), ,$*)))" go test -ldflags="${MINIKUBE_LDFLAGS}" -c k8s.io/minikube/test/integration --tags="$(MINIKUBE_INTEGRATION_BUILD_TAGS)" -o $@
|
||||
|
|
|
|||
Loading…
Reference in New Issue