Benchmark inputs are too large for CI testing

This commit is contained in:
Charlie Curtsinger 2019-08-18 16:39:52 -05:00
parent baf5353ebd
commit 46691ac521
3 changed files with 4 additions and 6 deletions

View File

@ -27,4 +27,3 @@ install:
# Run the make check target (add tests later)
script:
- make check USE_SYSTEM_COZ=1
- cd benchmarks && make test USE_SYSTEM_COZ=1

View File

@ -1,5 +1,5 @@
ROOT := .
DIRS := libcoz viewer benchmarks
DIRS := libcoz viewer
include $(ROOT)/common.mk
@ -13,3 +13,6 @@ install:: all
@$(INSTALL) -D libcoz/libcoz.so $(DESTDIR)$(pkglibdir)/libcoz.so
@$(INSTALL) -D include/coz.h $(DESTDIR)$(incdir)/coz.h
@$(RST2MAN) docs/coz.rst $(DESTDIR)$(man1dir)/coz.1
bench::
@$(MAKE) -C benchmarks bench

View File

@ -51,11 +51,7 @@ LOG_SUFFIX := "$(shell tput sgr0)"
MAKEFLAGS += -j
# Build all targets by default, unless this is a benchmark
ifeq ($(BENCHMARK),)
all:: $(TARGETS)
else
all::
endif
# Clean up after a bild
clean::