2019-09-04 11:37:50 +00:00
|
|
|
# VERSION/RELEASE
|
2019-04-18 14:59:55 +00:00
|
|
|
# If no version is specified as a parameter of make, the last git hash
|
|
|
|
# value is taken.
|
2020-01-08 20:54:39 +00:00
|
|
|
VERSION:=$(shell git describe --abbrev=0)+$(shell date +'%Y%m%d%H%I%S')
|
2019-09-04 11:37:50 +00:00
|
|
|
RELEASE?=1
|
|
|
|
|
2019-09-04 11:53:58 +00:00
|
|
|
# CONTAINER_IMAGE_VERSION
|
|
|
|
# Defines the version of the container image which has included the executable
|
|
|
|
# binary. This is somethimes different to the variable VERSION, because the
|
|
|
|
# container image version should be latest instead contains the latest git tag
|
|
|
|
# and hash sum.
|
2019-10-11 10:36:00 +00:00
|
|
|
CONTAINER_IMAGE_VERSION:=latest
|
2019-09-04 11:53:58 +00:00
|
|
|
|
|
|
|
# CONTAINER_RUNTIME/BUILD_IMAGE
|
|
|
|
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
|
|
|
# container runtime. This is needed to start and run a container image defined
|
|
|
|
# by the BUILD_IMAGE variable. The BUILD_IMAGE container serve as build
|
|
|
|
# environment to execute the different make steps inside. Therefore, the bulid
|
|
|
|
# environment requires all necessary dependancies to build this project.
|
2019-06-16 21:39:07 +00:00
|
|
|
CONTAINER_RUNTIME?=$(shell which docker)
|
2019-09-04 11:53:58 +00:00
|
|
|
BUILD_IMAGE:=volkerraschek/build-image:latest
|
2019-06-16 21:39:07 +00:00
|
|
|
|
2019-08-26 06:26:37 +00:00
|
|
|
# EXECUTABLE
|
|
|
|
# Executable binary which should be compiled for different architecures
|
|
|
|
EXECUTABLE:=flucky
|
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# DARWIN_EXECUTABLES AND TARGETS
|
|
|
|
DARWIN_EXECUTABLES:=\
|
|
|
|
darwin/386/${EXECUTABLE} \
|
|
|
|
darwin/amd64/${EXECUTABLE}
|
|
|
|
|
2019-10-11 10:36:00 +00:00
|
|
|
DARWIN_EXECUTABLE_TARGETS:=\
|
|
|
|
${DARWIN_EXECUTABLES:%=bin/%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# FREEBSD_EXECUTABLES AND TARGETS
|
2019-10-11 10:36:00 +00:00
|
|
|
FREEBSD_EXECUTABLES:=\
|
2019-09-04 11:37:50 +00:00
|
|
|
freebsd/amd64/${EXECUTABLE}
|
|
|
|
|
2019-10-11 10:36:00 +00:00
|
|
|
FREEBSD_EXECUTABLE_TARGETS:=\
|
|
|
|
${FREEBSD_EXECUTABLES:%=bin/%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# LINUX_EXECUTABLES AND TARGETS
|
2019-10-11 10:36:00 +00:00
|
|
|
LINUX_EXECUTABLES:=\
|
2019-09-04 11:37:50 +00:00
|
|
|
linux/amd64/${EXECUTABLE} \
|
|
|
|
linux/386/${EXECUTABLE} \
|
|
|
|
linux/arm/5/${EXECUTABLE} \
|
|
|
|
linux/arm/7/${EXECUTABLE}
|
|
|
|
|
2019-10-11 10:36:00 +00:00
|
|
|
LINUX_EXECUTABLE_TARGETS:=\
|
|
|
|
${LINUX_EXECUTABLES:%=bin/%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# UNIX_EXECUTABLES AND TARGETS
|
2019-08-26 06:26:37 +00:00
|
|
|
# Define all executables for different architectures and operation systems
|
2019-09-04 11:37:50 +00:00
|
|
|
UNIX_EXECUTABLES:= \
|
|
|
|
${DARWIN_EXECUTABLES} \
|
|
|
|
${FREEBSD_EXECUTABLES} \
|
|
|
|
${LINUX_EXECUTABLES}
|
|
|
|
|
|
|
|
UNIX_EXECUTABLE_TARGETS:= \
|
|
|
|
${DARWIN_EXECUTABLE_TARGETS} \
|
|
|
|
${FREEBSD_EXECUTABLE_TARGETS} \
|
|
|
|
${LINUX_EXECUTABLE_TARGETS}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-10-11 10:36:00 +00:00
|
|
|
# EXECUTABLES AND TARGETS
|
2019-09-04 11:37:50 +00:00
|
|
|
# Include all UNIX and Windows targets.
|
2019-10-11 10:36:00 +00:00
|
|
|
EXECUTABLES:=\
|
|
|
|
${UNIX_EXECUTABLES}
|
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
EXECUTABLE_TARGETS:= \
|
|
|
|
${UNIX_EXECUTABLE_TARGETS}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# BINARIES
|
|
|
|
# ==============================================================================
|
|
|
|
# current os
|
|
|
|
${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# build all binaries
|
|
|
|
PHONY:=all
|
2019-08-26 13:12:32 +00:00
|
|
|
all: ${EXECUTABLE_TARGETS}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# darwin os
|
|
|
|
bin/darwin/386/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARCH=386 GOOS=darwin go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
bin/darwin/amd64/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=darwin go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# freebsd os
|
|
|
|
bin/freebsd/amd64/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=freebsd go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# linux os
|
|
|
|
bin/linux/386/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARCH=386 GOOS=linux go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-06-14 19:35:13 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
bin/linux/amd64/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-08-26 13:12:32 +00:00
|
|
|
bin/linux/arm/5/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARM=5 GOARCH=arm GOOS=linux go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 13:12:32 +00:00
|
|
|
|
|
|
|
bin/linux/arm/7/${EXECUTABLE}: bindata
|
2019-12-08 14:15:26 +00:00
|
|
|
CGO_ENABLED=0 GOARM=7 GOARCH=arm GOOS=linux go build -ldflags "-X main.version=${VERSION}" -o ${@}
|
2019-08-26 13:12:32 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# GO-BINDATA
|
|
|
|
# ==============================================================================
|
2019-06-14 19:35:13 +00:00
|
|
|
bindata:
|
2019-09-04 11:37:50 +00:00
|
|
|
go-bindata -pkg db -o ./pkg/storage/db/bindataSQL.go ./pkg/storage/db/sql/*** ./pkg/storage/db/sql/psql/schema/***
|
2019-10-11 10:36:00 +00:00
|
|
|
go-bindata -pkg goldenfiles -ignore ".*\.go" -o ./test/goldenfiles/bindata.go ./test/goldenfiles/***
|
2019-08-26 06:26:37 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# TEST
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=test test-update-all
|
2019-08-26 06:26:37 +00:00
|
|
|
test: ${EXECUTABLE}
|
2019-09-04 11:37:50 +00:00
|
|
|
go test -v ./...
|
|
|
|
|
|
|
|
test-update-all: ${EXECUTABLE}
|
|
|
|
go test -v ./pkg/... -update all
|
|
|
|
|
|
|
|
# PACKAGES
|
|
|
|
# ==============================================================================
|
|
|
|
%.rpm: %
|
|
|
|
rpm-builder \
|
|
|
|
--exec-file "$<:/usr/bin/${EXECUTABLE}" \
|
|
|
|
--dir "systemd:/usr/lib/systemd/system" \
|
2019-12-08 14:15:26 +00:00
|
|
|
--license "Apache 2.0" \
|
2019-09-04 11:37:50 +00:00
|
|
|
--version ${VERSION} \
|
|
|
|
--release ${RELEASE} \
|
2019-12-08 14:15:26 +00:00
|
|
|
--out ${@} \
|
2019-09-04 11:37:50 +00:00
|
|
|
${EXECUTABLE}
|
|
|
|
|
|
|
|
# OTHER STUFF
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=clean
|
|
|
|
clean:
|
|
|
|
rm ${EXECUTABLE} || true
|
|
|
|
rm ${EXECUTABLE}.* || true
|
|
|
|
rm --recursive --force bin/ || true
|
2019-08-26 13:12:32 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# CONTAINER IMAGE STEPS
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=container-image/build/amd64
|
|
|
|
container-image/build/amd64: bin/linux/amd64/${EXECUTABLE}
|
|
|
|
${CONTAINER_RUNTIME} build \
|
|
|
|
--tag volkerraschek/${EXECUTABLE}:${IMAGE_VERSION} \
|
|
|
|
.
|
|
|
|
|
|
|
|
PHONY+=container-image/push/amd64
|
|
|
|
container-image/push/amd64: container-image/build/amd64
|
|
|
|
${CONTAINER_RUNTIME} push volkerraschek/${EXECUTABLE}:${IMAGE_VERSION}
|
|
|
|
|
|
|
|
# CONTAINER STEPS - BINARY
|
|
|
|
# ==============================================================================
|
|
|
|
# current os
|
|
|
|
PHONY+=container-run/${EXECUTABLE}
|
|
|
|
container-run/${EXECUTABLE}:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# build all binaries for any operating system
|
|
|
|
PHONY+=container-run/all
|
|
|
|
container-run/all:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
PHONY+=${UNIX_EXECUTABLE_TARGETS:%=container-run/%}
|
|
|
|
${UNIX_EXECUTABLE_TARGETS:%=container-run/%}:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# CONTAINER STEPS - GO-BINDATA
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=container-run/bindata
|
|
|
|
container-run/bindata:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# CONTAINER STEPS - TEST
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=container-run/test
|
|
|
|
container-run/test:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
PHONY+=container-run/test-update-all
|
|
|
|
container-run/test-update-all:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# CONTAINER STEPS - OTHER STUF
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=container-run/clean
|
|
|
|
container-run/clean:
|
2019-12-08 14:15:26 +00:00
|
|
|
$(MAKE) container-run COMMAND=${@:container-run/%=%}
|
2019-09-04 11:37:50 +00:00
|
|
|
|
|
|
|
# GENERAL CONTAINER COMMAND
|
|
|
|
# ==============================================================================
|
2019-09-04 12:04:02 +00:00
|
|
|
PHONY+=container-run
|
|
|
|
container-run:
|
2019-06-16 21:39:07 +00:00
|
|
|
${CONTAINER_RUNTIME} run \
|
|
|
|
--rm \
|
2019-08-25 14:31:52 +00:00
|
|
|
--volume ${PWD}:/workspace \
|
|
|
|
${BUILD_IMAGE} \
|
|
|
|
make ${COMMAND} \
|
|
|
|
VERSION=${VERSION} \
|
2019-09-04 11:37:50 +00:00
|
|
|
RELEASE=${RELEASE}
|
|
|
|
|
|
|
|
# REMOTE
|
|
|
|
# ==============================================================================
|
|
|
|
PHONY+=${FLUCKY_REMOTE:%=remote/%}
|
|
|
|
remote/${FLUCKY_REMOTE}: bin/linux/arm/7/${EXECUTABLE}
|
|
|
|
scp bin/linux/arm/7/${EXECUTABLE} root@${FLUCKY_REMOTE}:/usr/local/bin/${EXECUTABLE}
|
|
|
|
ssh root@${FLUCKY_REMOTE} 'chmod +x /usr/local/bin/${EXECUTABLE}'
|
2019-06-11 18:07:55 +00:00
|
|
|
|
2019-09-04 11:37:50 +00:00
|
|
|
# PHONY
|
|
|
|
# ==============================================================================
|
|
|
|
# Declare the contents of the PHONY variable as phony. We keep that information
|
|
|
|
# in a variable so we can use it in if_changed.
|
|
|
|
.PHONY: ${PHONY}
|