From af3c38052ec3a573e6266a92b0131d415bcdce40 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 10 Jul 2015 15:45:01 -0600 Subject: [PATCH] Avoid examples that cannot be run in Phantom --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 77c6e55ad7..ffe3604869 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,8 @@ BUILD_HOSTED := build/hosted/$(BRANCH) BUILD_HOSTED_EXAMPLES := $(addprefix $(BUILD_HOSTED)/,$(EXAMPLES)) BUILD_HOSTED_EXAMPLES_JS := $(addprefix $(BUILD_HOSTED)/,$(EXAMPLES_JS)) -CHECK_EXAMPLE_TIMESTAMPS = $(patsubst examples/%.html,build/timestamps/check-%-timestamp,$(EXAMPLES_HTML)) +UNPHANTOMABLE_EXAMPLES = examples/shaded-relief.html examples/raster.html +CHECK_EXAMPLE_TIMESTAMPS = $(patsubst examples/%.html,build/timestamps/check-%-timestamp,$(filter-out $(UNPHANTOMABLE_EXAMPLES),$(EXAMPLES_HTML))) TASKS_JS := $(shell find tasks -name '*.js')