Makefile 584 B

1234567891011
  1. VERSION=$(shell git describe --tags | sed 's/^v//' )
  2. BUILD=$(shell date +%FT%T%z)
  3. all:
  4. docker run --rm -v $(PWD):/root/go/src/git.scraperwall.com/scw/munchclient -w /root/go/src/git.scraperwall.com/scw/munchclient registry.scw.systems/centos7-build:latest make compile
  5. all-debian:
  6. docker run --rm -v $(PWD):/go/src/git.scraperwall.com/scw/munchclient -w /go/src/git.scraperwall.com/scw/munchclient registry.scw.systems/debian-build:latest make compile
  7. compile:
  8. env GOOS=linux GOARCH=amd64 go build -tags netgo -ldflags "-s -X main.Version=$(VERSION) -X main.BuildDate=$(BUILD)"