PKGBUILD/Makefile

49 lines
1.3 KiB
Makefile
Raw Normal View History

2019-04-18 14:59:55 +00:00
# UID/GID
# UID or GID is the UNIX user ID or group ID of the user who executes
# make. If the UID or GID is not passed as a make variable, an attempt
# is made to determine it.
2019-05-12 09:57:53 +00:00
UID?=$(shell id --user)
GID?=$(shell id --group)
2019-04-18 14:59:55 +00:00
# VERSION
# If no version is specified as a parameter of make, the last git hash
# value is taken.
2019-08-20 19:37:45 +00:00
VERSION:=$(or ${TRAVIS_TAG}, $(shell git rev-parse --short HEAD)-git)
2018-11-07 19:07:15 +00:00
CONTAINER_RUNTIME?=$(shell which docker)
2019-04-18 15:10:03 +00:00
GOARCH?=amd64
GOOS?=linux
2019-04-18 14:59:55 +00:00
# default build
2019-08-20 19:37:45 +00:00
go-build: bindata
2019-04-18 15:10:03 +00:00
GOOS=${GOOS} \
GOARCH=${GOARCH} \
go build -ldflags "-X main.version=${VERSION}"
2019-05-12 09:57:53 +00:00
chown -R ${UID}:${GID} *
2018-11-07 19:07:15 +00:00
2019-08-20 19:37:45 +00:00
go-test: go-build
go test -v ./pkg/...
bindata:
2019-08-20 19:37:45 +00:00
go-bindata -pkg db -o ./pkg/db/bindataSQL.go ./pkg/db/sql/***
go-bindata -pkg goldenfiles -o ./test/goldenfiles/bindata.go ./test/goldenfiles/json/***
2019-08-20 19:37:45 +00:00
container-go-build:
$(MAKE) container-run COMMAND=go-build
2019-08-20 19:37:45 +00:00
container-go-test:
$(MAKE) container-run COMMAND=go-test
container-run:
${CONTAINER_RUNTIME} run \
2019-04-18 15:10:03 +00:00
--volume ${PWD}:/workspace \
--rm \
volkerraschek/build-image:latest\
make ${COMMAND} UID=${UID} GID=${GID} VERSION=${VERSION} GOOS=${GOOS} GOARCH=${GOARCH}
2019-06-11 18:07:55 +00:00
remote:
2019-08-20 19:37:45 +00:00
$(MAKE) go-build GOARCH=arm
scp flucky ${FLUCKY_REMOTE}:/usr/local/bin
ssh ${FLUCKY_REMOTE} "chmod +x /usr/local/bin/flucky"