mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 13:37:08 +00:00

- No external dependencies - No predefined directory structure - Able to launch any kind of shell script with custom parameters - Get script output as text event stream (SSE) - Using common Makefiles - Extends docker/dind Docker image
70 lines
1.4 KiB
Makefile
70 lines
1.4 KiB
Makefile
.SILENT :
|
|
|
|
# Author
|
|
AUTHOR=github.com/ncarlier
|
|
|
|
# App name
|
|
APPNAME=webhookd
|
|
|
|
# Go configuration
|
|
GOOS?=linux
|
|
GOARCH?=amd64
|
|
|
|
# Add exe extension if windows target
|
|
is_windows:=$(filter windows,$(GOOS))
|
|
EXT:=$(if $(is_windows),".exe","")
|
|
|
|
# Go app path
|
|
APPBASE=${GOPATH}/src/$(AUTHOR)
|
|
|
|
# Artefact name
|
|
ARTEFACT=release/$(APPNAME)-$(GOOS)-$(GOARCH)$(EXT)
|
|
|
|
# Extract version infos
|
|
VERSION:=`git describe --tags`
|
|
LDFLAGS=-ldflags "-X $(AUTHOR)/$(APPNAME)/version.App=${VERSION}"
|
|
|
|
all: build
|
|
|
|
# Include common Make tasks
|
|
root_dir:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
makefiles:=$(root_dir)/makefiles
|
|
include $(makefiles)/help.Makefile
|
|
|
|
$(APPBASE)/$(APPNAME):
|
|
echo "Creating GO src link: $(APPBASE)/$(APPNAME) ..."
|
|
mkdir -p $(APPBASE)
|
|
ln -s $(root_dir) $(APPBASE)/$(APPNAME)
|
|
|
|
## Clean built files
|
|
clean:
|
|
-rm -rf release
|
|
.PHONY: clean
|
|
|
|
## Build executable
|
|
build: $(APPBASE)/$(APPNAME)
|
|
-mkdir -p release
|
|
echo "Building: $(ARTEFACT) ..."
|
|
GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(LDFLAGS) -o $(ARTEFACT)
|
|
.PHONY: build
|
|
|
|
$(ARTEFACT): build
|
|
|
|
## Run tests
|
|
test:
|
|
go test
|
|
.PHONY: test
|
|
|
|
## Install executable
|
|
install: $(ARTEFACT)
|
|
echo "Installing $(ARTEFACT) to ${HOME}/.local/bin/$(APPNAME) ..."
|
|
cp $(ARTEFACT) ${HOME}/.local/bin/$(APPNAME)
|
|
.PHONY: install
|
|
|
|
## Create Docker image
|
|
image:
|
|
echo "Building Docker inage ..."
|
|
docker build --rm -t ncarlier/$(APPNAME) .
|
|
.PHONY: image
|
|
|