Makefile: Add plugins/*/examples/* as SMOKE_SKETCHES candidates

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
examples/factory-firmware
Gergely Nagy 2 years ago
parent 4b9a9c2b14
commit acd312c94c
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

@ -145,7 +145,7 @@ cpplint:
shellcheck:
bin/check-shell-scripts.sh
SMOKE_SKETCHES := $(sort $(shell if [ -d ./examples ]; then find ./examples -type f -name \*ino | xargs -n 1 dirname; fi))
SMOKE_SKETCHES := $(sort $(shell if [ -d ./examples ]; then find ./examples -type f -name \*ino | xargs -n 1 dirname; fi; if [ -d ./plugins ]; then find ./plugins -type f -path '*/examples/*/*.ino' | xargs -n 1 dirname; fi))
smoke-sketches: $(SMOKE_SKETCHES)
@echo "Smoke-tested all the sketches"

Loading…
Cancel
Save