@@ -38,11 +38,6 @@ build_linter_image:
3838 # build dockerfile from stdin so that we don't send the build-context; source is bind-mounted in the development environment
3939 cat ./dockerfiles/Dockerfile.lint | docker build ${DOCKER_BUILD_ARGS} --build-arg=GO_VERSION -t $(LINTER_IMAGE_NAME ) -
4040
41- .PHONY : build_cross_image
42- build_cross_image :
43- # build dockerfile from stdin so that we don't send the build-context; source is bind-mounted in the development environment
44- cat ./dockerfiles/Dockerfile.cross | docker build ${DOCKER_BUILD_ARGS} --build-arg=GO_VERSION -t $(CROSS_IMAGE_NAME ) -
45-
4641.PHONY : build_shell_validate_image
4742build_shell_validate_image :
4843 # build dockerfile from stdin so that we don't send the build-context; source is bind-mounted in the development environment
@@ -80,22 +75,10 @@ test-unit: build_docker_image ## run unit tests (using go test)
8075.PHONY : test # # run unit and e2e tests
8176test : test-unit test-e2e
8277
83- .PHONY : cross
84- cross : build_cross_image # # build the CLI for macOS and Windows
85- $(DOCKER_RUN ) $(CROSS_IMAGE_NAME ) make cross
86-
87- .PHONY : binary-windows
88- binary-windows : build_cross_image # # build the CLI for Windows
89- $(DOCKER_RUN ) $(CROSS_IMAGE_NAME ) make $@
90-
9178.PHONY : plugins-windows
9279plugins-windows : build_cross_image # # build the example CLI plugins for Windows
9380 $(DOCKER_RUN ) $(CROSS_IMAGE_NAME ) make $@
9481
95- .PHONY : binary-osx
96- binary-osx : build_cross_image # # build the CLI for macOS
97- $(DOCKER_RUN ) $(CROSS_IMAGE_NAME ) make $@
98-
9982.PHONY : plugins-osx
10083plugins-osx : build_cross_image # # build the example CLI plugins for macOS
10184 $(DOCKER_RUN ) $(CROSS_IMAGE_NAME ) make $@
@@ -120,9 +103,6 @@ fmt: ## run gofmt
120103vendor : build_docker_image vendor.conf # # download dependencies (vendor/) listed in vendor.conf
121104 $(DOCKER_RUN ) -it $(DEV_DOCKER_IMAGE_NAME ) make vendor
122105
123- dynbinary : build_cross_image # # build the CLI dynamically linked
124- $(DOCKER_RUN ) -it $(CROSS_IMAGE_NAME ) make dynbinary
125-
126106.PHONY : authors
127107authors : # # generate AUTHORS file from git history
128108 $(DOCKER_RUN ) -it $(DEV_DOCKER_IMAGE_NAME ) make authors
0 commit comments