From 6aa77ce3e4e4c5929fbb4e0663082fd748c929a0 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 20 May 2017 22:48:02 +0200 Subject: [PATCH] travis: run install before building site docu --- .travis/build-site.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis/build-site.sh b/.travis/build-site.sh index 07993c342d..7e376c9c1c 100644 --- a/.travis/build-site.sh +++ b/.travis/build-site.sh @@ -20,7 +20,8 @@ export PING_PID_FILE=/tmp/build-site-ping.pid source .travis/background-job-funcs.sh # Run the build, redirect output into the file -./mvnw verify site site:stage -Psite -B -V >> $BUILD_OUTPUT 2>&1 +./mvnw install -DskipTests=true -B -V >> $BUILD_OUTPUT 2>&1 +./mvnw site site:stage -Psite -B -V >> $BUILD_OUTPUT 2>&1 # The build finished without returning an error so dump a tail of the output dump_output