Make CI to fail if one sample fails

This commit is contained in:
Francisco Javier Trujillo Mata
2021-11-23 01:31:57 +01:00
parent 515834c2bf
commit 227b0de587

View File

@@ -83,6 +83,6 @@ SAMPLES = \
all:
for sample in $(SAMPLES) ; do \
$(MAKE) -f Makefile.sample -C $$sample clean all || break; \
$(MAKE) -f Makefile.sample -C $$sample clean all || { exit 1; } \
done