2022-08-07 12:32:43 +00:00
|
|
|
.DEFAULT_GOAL := default
|
|
|
|
|
2022-08-07 13:38:35 +00:00
|
|
|
IMAGE ?= rg.fr-par.scw.cloud/averagemarcus/marcusnoble:latest
|
2022-08-07 12:32:43 +00:00
|
|
|
|
|
|
|
.PHONY: test # Run all tests, linting and format checks
|
|
|
|
test: lint check-format run-tests
|
|
|
|
|
|
|
|
.PHONY: lint # Perform lint checks against code
|
|
|
|
lint:
|
|
|
|
@echo "⚠️ 'lint' unimplemented"
|
|
|
|
|
|
|
|
.PHONY: check-format # Checks code formatting and returns a non-zero exit code if formatting errors found
|
|
|
|
check-format:
|
|
|
|
@echo "⚠️ 'check-format' unimplemented"
|
|
|
|
|
|
|
|
.PHONY: format # Performs automatic format fixes on all code
|
|
|
|
format:
|
|
|
|
@echo "⚠️ 'format' unimplemented"
|
|
|
|
|
|
|
|
.PHONY: run-tests # Runs all tests
|
|
|
|
run-tests:
|
|
|
|
@echo "⚠️ 'run-tests' unimplemented"
|
|
|
|
|
|
|
|
.PHONY: fetch-deps # Fetch all project dependencies
|
|
|
|
fetch-deps:
|
2022-08-07 13:38:35 +00:00
|
|
|
@go mod tidy
|
2022-08-07 12:32:43 +00:00
|
|
|
|
|
|
|
.PHONY: build # Build the project
|
|
|
|
build: lint check-format fetch-deps
|
2022-08-07 13:38:35 +00:00
|
|
|
@go build .
|
2022-08-07 12:32:43 +00:00
|
|
|
|
|
|
|
.PHONY: docker-build # Build the docker image
|
|
|
|
docker-build:
|
|
|
|
@docker build -t $(IMAGE) .
|
|
|
|
|
|
|
|
.PHONY: docker-publish # Push the docker image to the remote registry
|
|
|
|
docker-publish:
|
|
|
|
@docker push $(IMAGE)
|
|
|
|
|
|
|
|
.PHONY: run # Run the application
|
2022-08-07 13:38:35 +00:00
|
|
|
run:
|
|
|
|
@go run .
|
2022-08-07 12:32:43 +00:00
|
|
|
|
|
|
|
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
|
|
|
ci:
|
|
|
|
@echo "⚠️ 'ci' unimplemented"
|
|
|
|
|
|
|
|
.PHONY: release # Release the latest version of the application
|
|
|
|
release:
|
2022-08-07 13:38:35 +00:00
|
|
|
@kubectl --context scaleway --namespace marcusnoble set image deployment marcusnoble web=rg.fr-par.scw.cloud/averagemarcus/marcusnoble:$(SHA)
|
2022-08-07 12:32:43 +00:00
|
|
|
|
|
|
|
.PHONY: help # Show this list of commands
|
|
|
|
help:
|
|
|
|
@echo "marcusnoble"
|
|
|
|
@echo "Usage: make [target]"
|
|
|
|
@echo ""
|
|
|
|
@echo "target description" | expand -t20
|
|
|
|
@echo "-----------------------------------"
|
|
|
|
@grep '^.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1 \2/' | expand -t20
|
|
|
|
|
|
|
|
default: test build
|