stockholm/Makefile

116 lines
3.2 KiB
Makefile
Raw Normal View History

stockholm ?= .
2016-03-10 11:32:29 +00:00
export HOSTNAME ?= $(shell cat /proc/sys/kernel/hostname)
2016-03-05 11:40:20 +00:00
export STOCKHOLM_VERSION ?= $(shell \
version=git.$$(git describe --always --dirty); \
2016-03-10 11:32:29 +00:00
case $$version in (*-dirty) version=$$version@$$HOSTNAME; esac; \
2016-03-05 11:40:20 +00:00
date=$$(date +%y.%m); \
printf '%s' "$$date.$$version"; \
)
2016-05-20 01:21:56 +00:00
system ?= $(HOSTNAME)
$(if $(system),,$(error unbound variable: system))
2016-03-10 11:41:24 +00:00
nixos-config ?= $(stockholm)/$(LOGNAME)/1systems/$(system)/config.nix
ifneq ($(words $(wildcard $(nixos-config))),1)
$(error bad nixos-config: $(nixos-config))
endif
2016-02-16 05:20:40 +00:00
# target = [target_user@]target_host[:target_port][/target_path]
ifdef target
_target_user != echo $(target) | sed -n 's/@.*//p'
_target_path != echo $(target) | sed -n 's/^[^/]*//p'
_target_port != echo $(target) | sed -En 's|^.*:([^/]*)(/.*)?$$|\1|p'
_target_host != echo $(target) | sed -En 's/^(.*@)?([^:/]*).*/\2/p'
ifneq ($(_target_host),)
$(if $(target_host),$(error cannot define both, target_host and host in target))
target_host ?= $(_target_host)
endif
ifneq ($(_target_user),)
$(if $(target_user),$(error cannot define both, target_user and user in target))
target_user ?= $(_target_user)
endif
ifneq ($(_target_port),)
$(if $(target_port),$(error cannot define both, target_port and port in target))
target_port ?= $(_target_port)
endif
ifneq ($(_target_path),)
$(if $(target_path),$(error cannot define both, target_path and path in target))
target_path ?= $(_target_path)
endif
endif
2016-07-17 00:58:20 +00:00
target_host ?= $(system)
target_user ?= root
target_port ?= 22
target_path ?= /var/src
2016-02-02 02:19:20 +00:00
$(if $(target_host),,$(error unbound variable: target_host))
$(if $(target_user),,$(error unbound variable: target_user))
$(if $(target_port),,$(error unbound variable: target_port))
$(if $(target_path),,$(error unbound variable: target_path))
2017-06-27 21:28:41 +00:00
whatsupnix = \
if type whatsupnix >/dev/null 2>&1; then \
whatsupnix $(1); \
else \
cat; \
fi
2016-06-04 22:25:47 +00:00
build = \
nix-build \
2017-06-27 21:28:41 +00:00
-Q \
2016-06-04 22:25:47 +00:00
--no-out-link \
--show-trace \
-I nixos-config=$(nixos-config) \
-I stockholm=$(stockholm) \
2017-06-27 21:28:41 +00:00
-E "with import <stockholm>; $(1)" \
$(2) \
|& $(call whatsupnix)
2016-06-04 22:25:47 +00:00
2016-02-04 10:32:13 +00:00
evaluate = \
nix-instantiate \
--eval \
--readonly-mode \
--show-trace \
-I nixos-config=$(nixos-config) \
-I stockholm=$(stockholm) \
2017-06-27 21:29:43 +00:00
-E "let eval = import <stockholm>; in with eval; $(1)" \
$(2)
2016-02-04 10:32:13 +00:00
2016-05-20 00:52:23 +00:00
ifeq ($(MAKECMDGOALS),)
$(error No goals specified)
endif
# usage: make deploy system=foo [target=bar]
# usage: make install system=foo target=bar
# usage: make test system=foo target=bar
deploy install test:
ifdef target
nix-shell --run '$@ --system=$(system) --target=$(target)'
2016-07-17 00:58:20 +00:00
else
nix-shell --run '$@ --system=$(system)'
2016-07-17 00:58:20 +00:00
endif
# usage: make populate system=foo
2016-10-03 13:21:31 +00:00
populate: populate-target = \
$(target_user)@$(target_host):$(target_port)$(target_path)
ifeq ($(debug),true)
2016-07-17 00:37:46 +00:00
populate: populate-flags += --debug
endif
2016-07-16 23:30:11 +00:00
ifneq ($(ssh),)
populate: populate-flags += --ssh=$(ssh)
endif
populate:
2017-07-23 00:01:35 +00:00
nix-shell --run 'get-source $(LOGNAME)/1systems/$(system)/source.nix' \
2016-10-03 13:21:31 +00:00
populate $(populate-target) $(populate-flags)
2016-07-16 22:52:21 +00:00
# usage: make pkgs.populate
pkgs:;@$(error no package selected)
pkgs.%:;@$(call build,$@)
2016-06-04 22:25:47 +00:00
2017-07-13 22:17:58 +00:00
# usage: make LOGNAME=krebs system=wolf eval.config.krebs.build.host.name
eval eval.:;@$(call evaluate,$${expr-eval})
eval.%:;@$(call evaluate,$@)