mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
makefile: Remove script -q so errors appear in CI
Signed-off-by: Dave Tucker <dt@docker.com>
This commit is contained in:
parent
11fcf087ca
commit
745dcb66b9
8
Makefile
8
Makefile
@ -42,7 +42,7 @@ test-bzImage: test-initrd.img
|
||||
# interactive versions need to use volume mounts
|
||||
.PHONY: test-qemu-efi
|
||||
test-qemu-efi: test-efi.iso
|
||||
script -q /dev/null $(MOBY) run $^ | tee test-efi.log
|
||||
$(MOBY) run $^ | tee test-efi.log
|
||||
$(call check_test_log, test-efi.log)
|
||||
|
||||
bin:
|
||||
@ -58,17 +58,17 @@ endef
|
||||
.PHONY: test-hyperkit
|
||||
test-hyperkit: $(MOBY) test-initrd.img test-bzImage test-cmdline
|
||||
rm -f disk.img
|
||||
script -q /dev/null $(MOBY) run test | tee test.log
|
||||
$(MOBY) run test | tee test.log
|
||||
$(call check_test_log, test.log)
|
||||
|
||||
.PHONY: test-gcp
|
||||
test-gcp: $(MOBY) test.img.tar.gz
|
||||
script -q /dev/null $(MOBY) run gcp test.img.tar.gz | tee test-gcp.log
|
||||
$(MOBY) run gcp test.img.tar.gz | tee test-gcp.log
|
||||
$(call check_test_log, test-gcp.log)
|
||||
|
||||
.PHONY: test
|
||||
test: test-initrd.img test-bzImage test-cmdline
|
||||
script -q /dev/null $(MOBY) run test | tee test.log
|
||||
$(MOBY) run test | tee test.log
|
||||
$(call check_test_log, test.log)
|
||||
|
||||
test-ltp.img.tar.gz: $(MOBY) test/ltp/test-ltp.yml
|
||||
|
Loading…
Reference in New Issue
Block a user