chore: add test target to the Makefile

* [skip ci]
This commit is contained in:
surtur 2020-12-29 01:59:37 +01:00
parent 21715e00b7
commit e7fdfb9e07
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -10,7 +10,7 @@ kanikowdir = /src
kanikocontext = .
kanikoargs = -f=$(dfile) -c=$(kanikocontext) --use-new-run --snapshotMode=redo --no-push
.PHONY: build kaniko clean prune
.PHONY: build kaniko clean test prune
kaniko:
$(dcmd) $(dargskaniko) $(kanikoexecutorimg) $(kanikoargs)
@ -21,5 +21,7 @@ build:
clean:
$(dcmd) $(cleanargs)
test: build kaniko
prune:
$(dcmd) $(pruneargs)