Skip to content

Commit

Permalink
#162 Savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Aug 30, 2024
1 parent cdcea0d commit f33acd2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,10 @@ hello-world: hello-world-osarch-specific
# -----------------------------------------------------------------------------

.PHONY: dependencies-for-development
dependencies-for-development:
dependencies-for-development: dependencies-for-development-osarch-specific
@go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
@go install github.com/vladopajic/go-test-coverage/v2@latest
@go install golang.org/x/tools/cmd/godoc@latest
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.58.1


.PHONY: dependencies
Expand Down
5 changes: 5 additions & 0 deletions makefiles/darwin.mk
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ coverage-osarch-specific:
@open file://$(MAKEFILE_DIRECTORY)/coverage.html


.PHONY: dependencies-for-development-osarch-specific
dependencies-for-development-osarch-specific:
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.58.1


.PHONY: docker-build-osarch-specific
docker-build-osarch-specific:
@docker build \
Expand Down
5 changes: 5 additions & 0 deletions makefiles/linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ coverage-osarch-specific:
@xdg-open $(MAKEFILE_DIRECTORY)/coverage.html


.PHONY: dependencies-for-development-osarch-specific
dependencies-for-development-osarch-specific:
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.58.1


.PHONY: docker-build-osarch-specific
docker-build-osarch-specific:
@$(DOCKER_BUILDKIT) docker build \
Expand Down
4 changes: 4 additions & 0 deletions makefiles/windows.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ coverage-osarch-specific:
@explorer file://$(MAKEFILE_DIRECTORY)/coverage.html


.PHONY: docker-build-osarch-specific
docker-build-osarch-specific:


.PHONY: docker-build-osarch-specific
docker-build-osarch-specific:
@docker build \
Expand Down

0 comments on commit f33acd2

Please sign in to comment.