@@ -6,6 +6,7 @@ ifeq (y,$(CONFIG_BOOTLINUX))
66BOOTLINUX_BASENAME := $(shell basename $(CONFIG_BOOTLINUX_TREE ) )
77ifneq ($(wildcard .ci/build-test/$(BOOTLINUX_BASENAME ) ) ,)
88ifneq ($(wildcard .ci/test/$(BOOTLINUX_BASENAME ) ) ,)
9+ ifneq ($(wildcard .ci/results/$(BOOTLINUX_BASENAME ) ) ,)
910
1011ci-build-test : build-test-$(BOOTLINUX_BASENAME )
1112
@@ -28,7 +29,7 @@ ci-build-test-help-menu:
2829
2930HELP_TARGETS += ci-build-test-help-menu
3031
31- ci-test : build -test-$(BOOTLINUX_BASENAME )
32+ ci-test : ci -test-$(BOOTLINUX_BASENAME )
3233
3334ci-test-% ::
3435 @set -e; \
@@ -47,6 +48,25 @@ ci-test-help-menu:
4748
4849HELP_TARGETS += ci-test-help-menu
4950
51+ ci-results : ci-results-$(BOOTLINUX_BASENAME )
52+
53+ ci-results-% ::
54+ @set -e; \
55+ while IFS= read -r line || [ -n " $$ line" ]; do \
56+ echo -e " $$ line" ; \
57+ done < .ci/results/$(BOOTLINUX_BASENAME )
58+
59+ ci-results-help-menu :
60+ @echo " kdevops built-in results tests for $( BOOTLINUX_BASENAME) can be found in directories:"
61+ @echo " ci-results - List of directories where you can find test results"
62+ @while IFS= read -r line || [ -n " $$ line" ]; do \
63+ echo -e " \t$$ line" ; \
64+ done < .ci/results/$(BOOTLINUX_BASENAME )
65+ @echo
66+
67+ HELP_TARGETS += ci-results-help-menu
68+
69+ endif # We have ci results entries
5070endif # We have ci tests entries
5171endif # We have ci build tests entries
5272endif # CONFIG_BOOTLINUX
0 commit comments