aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: 28762ef1f6316e2b7cda3720c3b24f1286bca2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c
.ONESHELL:
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules

CACHEDIR=/tmp/hugo-cache-$(USER)
DESTDIR=public/
HOSTNAME=$(shell hostname -f)
REVISION=$(shell git rev-parse HEAD)

.PHONY: build
build: ## make build		# builds an optimized version of the website in $(DESTDIR)
	@echo "----- Generating site -----"
	hugo --gc --minify --cleanDestinationDir -d $(DESTDIR) --cacheDir $(CACHEDIR) --buildFuture
	cp public/index.json search/
	cp public/search/index.html search/
	(cd search && CGO_ENABLED=0 go build -ldflags '-s -w -extldflags "-static"' ./search.go)

.PHONY: buildah
buildah: ## make buildah	# builds the container images
	deploy/build-image.sh

.PHONY: clean
clean: ## make clean		# removed all $(DESTDIR) contents
	@echo "----- Cleaning old build -----"
	rm -f search/index.html search/index.json search/search
	rm -rf $(DESTDIR)

.PHONY: deploy
deploy: ## make deploy	# deploy the website to myth.adyxax.org
	rsync -a $(DESTDIR) root@myth.adyxax.org:/srv/www/
	rsync search/search root@myth.adyxax.org:/srv/www/search/search
	ssh root@myth.adyxax.org "systemctl restart www-search"

.PHONY: deploy-kube
deploy-kube: ## make deploy-kube	# deploy the website to the active kubernetes context
	sed -i deploy/www.yaml -e 's/^\(\s*image:[^:]*:\).*$$/\1$(REVISION)/'
	kubectl apply -f deploy/www.yaml

.PHONY: help
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

.PHONY: push
push: ## make push		# push the built images to quay.io
	buildah push adyxax/www quay.io/adyxax/www:$(REVISION)
	buildah push adyxax/www-search quay.io/adyxax/www-search:$(REVISION)

.PHONY: serve
serve: ## make serve		# hugo web server development mode
	hugo serve --disableFastRender --noHTTPCache --cacheDir $(CACHEDIR) --bind 0.0.0.0 --port 1313 -b http://$(HOSTNAME):1313/ --buildFuture --navigateToChanged

.DEFAULT_GOAL := help