Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit e4676d1

Browse files
authored
Merge pull request #132 from chris-crone/clean-make
Remove unused Makefile rule
2 parents fede1d5 + 316dab3 commit e4676d1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ e2e-all: check_go_env
6262
@echo "Building for all platforms..."
6363
$(foreach OS, $(OS_LIST), GOOS=$(OS) $(GO_TEST) -c -i -o _build/$(E2E_NAME)-$(OS)$(if $(filter windows, $(OS)),.exe,) ./e2e || exit 1;)
6464

65-
release:
66-
gsutil cp -r _build gs://docker_app
67-
6865
test check: lint unit-test e2e-test
6966

7067
lint:
@@ -101,5 +98,5 @@ ci-bin-all:
10198
$(foreach OS, $(OS_LIST), docker run --rm $(IMAGE_NAME)-bin-all:$(TAG) tar -cz -C $(PKG_PATH)/_build $(BIN_NAME)-$(OS)$(if $(filter windows, $(OS)),.exe,) > $(BIN_NAME)-$(OS)-$(TAG).tar.gz || exit 1;)
10299
$(foreach OS, $(OS_LIST), docker run --rm $(IMAGE_NAME)-bin-all:$(TAG) /bin/sh -c "cp $(PKG_PATH)/_build/*-$(OS)* $(PKG_PATH)/e2e && cd $(PKG_PATH)/e2e && tar -cz * --exclude=*.go" > $(E2E_NAME)-$(OS)-$(TAG).tar.gz || exit 1;)
103100

104-
.PHONY: bin bin-all release test check lint e2e-test e2e-all unit-test clean ci-lint ci-test ci-bin-all ci-e2e-all
101+
.PHONY: bin bin-all test check lint e2e-test e2e-all unit-test clean ci-lint ci-test ci-bin-all ci-e2e-all
105102
.DEFAULT: all

0 commit comments

Comments
 (0)