1
0
mirror of https://github.com/umputun/reproxy.git synced 2025-02-16 18:34:30 +02:00
reproxy/Makefile

35 lines
1.1 KiB
Makefile
Raw Normal View History

2021-04-09 20:38:27 -05:00
B=$(shell git rev-parse --abbrev-ref HEAD)
BRANCH=$(subst /,-,$(B))
GITREV=$(shell git describe --abbrev=7 --always --tags)
REV=$(GITREV)-$(BRANCH)-$(shell date +%Y%m%d-%H:%M:%S)
docker:
docker build -t umputun/reproxy:master --progress=plain .
dist:
- @mkdir -p dist
docker build -f Dockerfile.artifacts --progress=plain -t reproxy.bin .
- @docker rm -f reproxy.bin 2>/dev/null || exit 0
docker run -d --name=reproxy.bin reproxy.bin
docker cp reproxy.bin:/artifacts dist/
docker rm -f reproxy.bin
race_test:
cd app && go test -race -mod=vendor -timeout=60s -count 1 ./...
2021-04-09 20:38:27 -05:00
build: info
2021-04-10 14:46:18 -05:00
- cd app && GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags "-X main.revision=$(REV) -s -w" -o ../dist/reproxy
2021-04-09 20:38:27 -05:00
site:
2021-04-16 14:04:54 -05:00
@rm -f site/public/*
docker build -f Dockerfile.site --progress=plain -t reproxy.site .
2021-04-16 14:04:54 -05:00
docker run -d --name=reproxy.site reproxy.site
docker cp reproxy.site:/build/public site/
docker rm -f reproxy.site
rsync -avz -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress ./site/public/ reproxy.io:/srv/www/reproxy.io
2021-04-17 22:52:39 -05:00
2021-04-09 20:38:27 -05:00
info:
- @echo "revision $(REV)"
2021-04-17 22:52:39 -05:00
.PHONY: dist docker race_test bin info site build_site