mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
50 lines
736 B
Makefile
50 lines
736 B
Makefile
BINPATH := $(abspath ./bin)
|
|
GOLANGCI := $(BINPATH)/golangci-lint
|
|
|
|
.PHONY: all
|
|
all: build lint test
|
|
|
|
#
|
|
# Build Podsync CLI binary
|
|
#
|
|
.PHONY: build
|
|
build:
|
|
go build -o podsync ./cmd/podsync
|
|
|
|
#
|
|
# Build Docker image
|
|
#
|
|
.PHONY: docker
|
|
docker:
|
|
GOOS=linux GOARCH=amd64 go build -o podsync ./cmd/podsync
|
|
docker build -t mxpv/podsync:unstable .
|
|
docker push mxpv/podsync:unstable
|
|
|
|
#
|
|
# Pull GolangCI-Lint dependency
|
|
#
|
|
$(GOLANGCI):
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(BINPATH) v1.23.1
|
|
$(GOLANGCI) --version
|
|
|
|
#
|
|
# Run linter
|
|
#
|
|
.PHONY: lint
|
|
lint: $(GOLANGCI)
|
|
$(GOLANGCI) run
|
|
|
|
#
|
|
# Run unit tests
|
|
#
|
|
.PHONY: test
|
|
test:
|
|
go test -v ./...
|
|
|
|
#
|
|
# Clean
|
|
#
|
|
.PHONY: clean
|
|
clean:
|
|
- rm -rf $(BINPATH)
|