PKGBUILD/Makefile

48 lines
1.2 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-04-18 15:10:03 +00:00
VERSION:=$(or ${TRAVIS_TAG}, ${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-04-18 15:10:03 +00:00
build:
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
test: bindata
go test -v ./pkg/...
bindata:
2019-06-21 09:48:44 +00:00
go-bindata -pkg logfile_test -o ./pkg/logfile/bindata_test.go ./pkg/logfile/test/***
2019-06-11 18:07:55 +00:00
container-build:
$(MAKE) container-run COMMAND=build
container-test:
$(MAKE) container-run COMMAND=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-06-11 18:07:55 +00:00
$(MAKE) build GOARCH=arm
scp flucky ${FLUCKY_REMOTE}:/usr/local/bin
ssh ${FLUCKY_REMOTE} "chmod +x /usr/local/bin/flucky"