mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
implement buildtest target
the target runs make for every board in boards
This commit is contained in:
parent
cc45909ffc
commit
50a2dbeaa1
@ -99,3 +99,9 @@ doc:
|
|||||||
|
|
||||||
debug:
|
debug:
|
||||||
$(DEBUGGER) $(DEBUGGER_FLAGS)
|
$(DEBUGGER) $(DEBUGGER_FLAGS)
|
||||||
|
|
||||||
|
buildtest:
|
||||||
|
@for BOARD in $$(sed -n -e 's/ifeq[^,]*,\([^)]*\))/\1/p' $(RIOTBASE)/boards/Makefile.base); do \
|
||||||
|
echo -n "Building for $${BOARD} .. "; \
|
||||||
|
env -i PATH=$${PATH} BOARD=$${BOARD} $(MAKE) -B clean all >/dev/null 2>&1 && echo "success" || echo "failed" ; \
|
||||||
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user