1
0
mirror of synced 2024-11-22 12:26:02 +03:00
mg-transport-telegram/Makefile

43 lines
1.2 KiB
Makefile
Raw Normal View History

ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
2018-08-17 16:31:55 +03:00
SRC_DIR=$(ROOT_DIR)/src
2018-05-18 15:38:59 +03:00
MIGRATIONS_DIR=$(ROOT_DIR)/migrations
CONFIG_FILE=$(ROOT_DIR)/config.yml
CONFIG_TEST_FILE=$(ROOT_DIR)/config_test.yml
2018-05-31 15:03:57 +03:00
BIN=$(ROOT_DIR)/bin/transport
REVISION=$(shell git describe --tags 2>/dev/null || git log --format="v0.0-%h" -n 1 || echo "v0.0-unknown")
2018-05-18 15:38:59 +03:00
build: deps fmt
@echo "==> Building"
2018-08-17 16:31:55 +03:00
@cd $(SRC_DIR) && CGO_ENABLED=0 go build -o $(BIN) -ldflags "-X common.build=${REVISION}" .
2018-05-18 15:38:59 +03:00
@echo $(BIN)
run: migrate
@echo "==> Running"
@${BIN} --config $(CONFIG_FILE) run
2018-05-25 16:01:58 +03:00
test: deps fmt
2018-05-31 15:03:57 +03:00
@echo "==> Running tests"
2018-08-23 13:11:40 +03:00
@cd $(ROOT_DIR) && go test ./... -v -cpu 2
2018-05-25 16:01:58 +03:00
jenkins_test: migrate_test
2018-05-25 16:01:58 +03:00
@echo "==> Running tests (result in test-report.xml)"
@go get -v -u github.com/jstemmer/go-junit-report
2018-09-03 11:52:35 +03:00
@go test ./... -v -cpu 2 -race | /go/bin/go-junit-report -set-exit-code > ./test-report.xml
2018-05-25 16:01:58 +03:00
fmt:
@echo "==> Running gofmt"
2018-08-23 13:11:40 +03:00
@gofmt -l -s -w $(ROOT_DIR)
2018-05-18 15:38:59 +03:00
deps:
@echo "==> Installing dependencies"
2018-08-17 13:36:25 +03:00
@go mod tidy
migrate: build
2018-05-31 15:03:57 +03:00
${BIN} --config $(CONFIG_FILE) migrate -p $(MIGRATIONS_DIR)
2018-05-18 15:38:59 +03:00
migrate_test: build
2018-05-31 15:03:57 +03:00
@${BIN} --config $(CONFIG_TEST_FILE) migrate -p $(MIGRATIONS_DIR)
2018-05-18 15:38:59 +03:00
migrate_down: build
@${BIN} --config $(CONFIG_FILE) migrate -v down