diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-02-02 17:51:47 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-02-02 17:51:47 +0100 |
commit | 3da1a284dc2620cf3c4a1e962cb53e415444ab2d (patch) | |
tree | 66b2fa23a5997aabd2616829ff58f4a0ea37f6c8 /Makefile | |
parent | 47647d40164b81c02367499ad3a0a9eb67029c8c (diff) | |
download | vyos-build-3da1a284dc2620cf3c4a1e962cb53e415444ab2d.tar.gz vyos-build-3da1a284dc2620cf3c4a1e962cb53e415444ab2d.zip |
Jenkins: add "make test" helper
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -220,6 +220,15 @@ vep1400: check_build_config clean prepare cd .. @scripts/copy-image +.PHONY: test +.ONESHELL: +test: + if [ ! -f build/live-image-amd64.hybrid.iso ]; then + echo "Could not find build/live-image-amd64.hybrid.iso" + exit 1 + fi + scripts/check-qemu-install --debug build/live-image-amd64.hybrid.iso + .PHONY: clean .ONESHELL: clean: |