diff --git a/Makefile b/Makefile index 75c37c0..98522e7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PREFIX?=/ -SUBPACKAGES = core network openrc aws azure gcp oci nocloud alpine +SUBPACKAGES = core network openrc aws azure gcp oci nocloud incus .PHONY: check install $(SUBPACKAGES) @@ -61,6 +61,12 @@ nocloud: install -Dm644 -t $(PREFIX)/lib/tiny-cloud/cloud/nocloud \ lib/tiny-cloud/cloud/nocloud/* +incus: + install -Dm644 -t $(PREFIX)/lib/tiny-cloud/cloud/incus \ + lib/tiny-cloud/cloud/incus/imds + install -Dm755 -t $(PREFIX)/lib/tiny-cloud/cloud/incus \ + lib/tiny-cloud/cloud/incus/autodetect + check: tests/Kyuafile Kyuafile kyua --variable parallelism=$(shell nproc) test || (kyua report --verbose && exit 1)