travis: build gadget-zero tests as well
This helps catch some perhaps unintended api changes
This commit is contained in:
parent
a1264f5065
commit
5cb852efde
@ -1,5 +1,7 @@
|
|||||||
language: c
|
language: c
|
||||||
script: make
|
script:
|
||||||
|
- make
|
||||||
|
- make -C tests/gadget-zero
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
|
15
tests/gadget-zero/Makefile
Normal file
15
tests/gadget-zero/Makefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# This is just a stub makefile used for travis builds
|
||||||
|
# to keep things all compiling. Normally you'd use
|
||||||
|
# one of the makefiles directly.
|
||||||
|
|
||||||
|
# These hoops are to enable parallel make correctly.
|
||||||
|
GZ_ALL := $(wildcard Makefile.*)
|
||||||
|
|
||||||
|
all: $(GZ_ALL:=.all)
|
||||||
|
clean: $(GZ_ALL:=.clean)
|
||||||
|
|
||||||
|
%.all:
|
||||||
|
make -f $* all
|
||||||
|
%.clean:
|
||||||
|
make -f $* clean
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user