Skip to content

Commit bb0d07a

Browse files
committed
(prow.)Makefile: transition from slashes to hyphens
Adding back the slashes to allow the CI to pass. We have a chicken and the egg problem. The CI for SDK doesn't know about the hyphens and the CI for the release PR doesn't know about the slashes.
1 parent 280f338 commit bb0d07a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ build/%.asc:
108108

109109
test: test-unit ## Run the tests
110110

111-
test-markdown:
111+
test-markdown test/markdown:
112112
./hack/ci/marker --root=doc
113113

114-
test-sanity: tidy
114+
test-sanity test/sanity: tidy
115115
./hack/tests/sanity-check.sh
116116

117-
test-unit: ## Run the unit tests
117+
test-unit test/unit: ## Run the unit tests
118118
$(Q)go test -count=1 -short ./cmd/...
119119
$(Q)go test -count=1 -short ./pkg/...
120120
$(Q)go test -count=1 -short ./internal/...

ci/prow.Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ export GOPROXY ?= https://proxy.golang.org/
77
build:
88
$(MAKE) -f Makefile build/operator-sdk
99

10-
test-e2e-go:
10+
test-e2e-go test/e2e/go:
1111
./ci/tests/e2e-go.sh $(ARGS)
1212

13-
test-e2e-ansible:
13+
test-e2e-ansible test/e2e/ansible:
1414
./ci/tests/e2e-ansible.sh
1515

16-
test-e2e-helm:
16+
test-e2e-helm test/e2e/helm:
1717
./ci/tests/e2e-helm.sh
1818

19-
test-subcommand:
19+
test-subcommand test/subcommand:
2020
./ci/tests/subcommand.sh

0 commit comments

Comments
 (0)