feat: add makefile

This commit is contained in:
Urko. 2024-02-22 18:59:28 +01:00
parent 91585fdb0a
commit bfa9f9dd79
4 changed files with 65 additions and 3 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@
.vscode
coverage
.notes
uploads
uploads
bin

59
Makefile Normal file
View File

@ -0,0 +1,59 @@
COVERAGE_DIR := coverage
BIN_DIR := ./bin
MAIN := ./cmd/http/main.go
APP_NAME := prosody_password
lint:
golangci-lint run ./...
goreportcard:
goreportcard-cli -v
test:
go test ./...
test-coverage:
rm -rf ${COVERAGE_DIR}
mkdir ${COVERAGE_DIR}
go test -v -coverprofile ${COVERAGE_DIR}/cover.out ./...
go tool cover -html ${COVERAGE_DIR}/cover.out -o ${COVERAGE_DIR}/cover.html
.PHONY: local_run
local_run:
go run ./cmd/main.go --dir "$(DIR)" --bucket "$(BUCKET)"
.PHONY: build_linux_amd64
build_linux_amd64:
@mkdir -p $(BIN_DIR)
GOOS=linux GOARCH=amd64 go build -o $(BIN_DIR)/$(APP_NAME)_linux_amd64 $(MAIN)
.PHONY: build_linux_arm64
build_linux_arm64:
@mkdir -p $(BIN_DIR)
GOOS=linux GOARCH=arm64 go build -o $(BIN_DIR)/$(APP_NAME)_linux_arm64 $(MAIN)
.PHONY: build_windows_amd64
build_windows_amd64:
@mkdir -p $(BIN_DIR)
GOOS=windows GOARCH=amd64 go build -o $(BIN_DIR)/$(APP_NAME)_windows_amd64.exe $(MAIN)
.PHONY: build_windows_386
build_windows_386:
@mkdir -p $(BIN_DIR)
GOOS=windows GOARCH=386 go build -o $(BIN_DIR)/$(APP_NAME)_windows_386.exe $(MAIN)
.PHONY: build_mac_amd64
build_mac_amd64:
@mkdir -p $(BIN_DIR)
GOOS=darwin GOARCH=amd64 go build -o $(BIN_DIR)/$(APP_NAME)_mac_amd64 $(MAIN)
.PHONY: build_mac_arm64
build_mac_arm64:
@mkdir -p $(BIN_DIR)
GOOS=darwin GOARCH=arm64 go build -o $(BIN_DIR)/$(APP_NAME)_mac_arm64 $(MAIN)
.PHONY: clean
clean:
rm -rf $(BIN_DIR)
.PHONY: rebuild
#rebuild: clean build_linux_amd64 build_linux_arm64 build_windows_amd64 build_windows_386 build_mac_amd64 build_mac_arm64
rebuild: clean build_linux_amd64 build_windows_amd64 build_windows_386 build_mac_amd64

View File

@ -36,7 +36,9 @@ func main() {
log.Println("on shutdown")
if restServer != nil {
restServer.Shutdown()
if err := restServer.Shutdown(); err != nil {
panic(err)
}
}
log.Println("gracefully shutdown")

2
go.mod
View File

@ -1,6 +1,6 @@
module gitea.urkob.com/urko/prosody-password
go 1.20
go 1.22
require (
gitea.urkob.com/urko/go-root-dir v0.0.0-20230311113851-2f6d4355888a