From 7ef3adaaf1854003f266770833b241855072b2ff Mon Sep 17 00:00:00 2001 From: Rafael Fonseca Date: Mon, 10 Nov 2025 10:34:53 +0100 Subject: [PATCH] v2: do not invoke v1 `make` commands Now that we've separated v1 and v2 CI tests in [1], we do not need to invoke v1 `make` commands in the v2 Makefile anymore. [1] https://github.com/openshift/release/pull/70966 --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index df0aa387e..222f1c2ec 100644 --- a/Makefile +++ b/Makefile @@ -43,12 +43,10 @@ verify: vet: $(GO) vet $(GO_MOD_FLAGS) $(GO_BUILD_FLAGS) ./... - make -C v1 vet test-unit: mkdir -p tests/results $(GO) test $(GO_MOD_FLAGS) $(GO_BUILD_FLAGS) -short -coverprofile=tests/results/cover.out -race -count=1 ./internal/pkg/... - make -C v1 test-unit test-integration: mkdir -p tests/results-integration @@ -56,19 +54,15 @@ test-integration: $(GO) test $(GO_MOD_FLAGS) $(GO_BUILD_FLAGS) -coverprofile=tests/results-integration/cover-release.out -race -count=1 ./internal/pkg/... -run TestIntegrationRelease $(GO) test $(GO_MOD_FLAGS) $(GO_BUILD_FLAGS) -coverprofile=tests/results-integration/cover-additional.out -race -count=1 ./internal/pkg/... -run TestIntegrationAdditionalM2M $(GO) test $(GO_MOD_FLAGS) $(GO_BUILD_FLAGS) -coverprofile=tests/results-integration/cover-release.out -race -count=1 ./internal/pkg/... -run TestIntegrationReleaseM2M - make -C v1 test-integration tidy: $(GO) mod tidy - make -C v1 tidy sanity: tidy format vet - make -C v1 sanity git diff --exit-code .PHONY: sanity format: verify-gofmt - make -C v1 verify-gofmt cover: $(GO) tool cover -html=tests/results/cover.out -o tests/results/cover.html