stockholm/Makefile

45 lines
802 B
Makefile
Raw Normal View History

2015-07-19 09:50:54 +00:00
#
# usage:
# make system=foo
# make systems='foo bar'
2015-07-28 19:03:49 +00:00
# make eval system=foo get=config.networking.extraHosts [filter=json]
2015-07-19 09:50:54 +00:00
#
2015-07-11 14:55:22 +00:00
.ONESHELL:
.SHELLFLAGS := -eufc
2015-07-19 09:50:54 +00:00
ifdef systems
$(systems):
parallel \
--line-buffer \
-j0 \
--no-notice \
--tagstring {} \
-q make systems= system={} ::: $(systems)
else ifdef system
2015-07-11 14:55:22 +00:00
.PHONY: deploy
deploy:;@
2015-07-28 19:03:49 +00:00
make eval system=$(system) get=config.krebs.build.script filter=json | sh
2015-07-22 23:04:51 +00:00
.PHONY: eval
eval:
2015-07-24 15:34:08 +00:00
@
2015-07-28 19:03:49 +00:00
ifeq ($(filter),json)
2015-08-05 13:24:50 +00:00
extraArgs='--json --strict'
2015-07-28 19:03:49 +00:00
filter() { jq -r .; }
else
filter() { cat; }
endif
2015-07-24 15:34:08 +00:00
NIX_PATH=stockholm=$$PWD:$$NIX_PATH \
nix-instantiate \
2015-07-28 19:03:49 +00:00
$${extraArgs-} \
2015-07-22 23:04:51 +00:00
--eval \
-A "$$get" \
2015-07-24 15:34:08 +00:00
'<stockholm>' \
--argstr user-name "$$LOGNAME" \
--argstr system-name "$$system" \
2015-07-28 19:03:49 +00:00
| filter
2015-07-19 09:50:54 +00:00
else
$(error unbound variable: system[s])
2015-07-11 14:55:22 +00:00
endif