Merge branch '1.1.x'

This commit is contained in:
Marcin Grzejszczak
2017-07-21 13:13:32 +02:00
3 changed files with 15 additions and 5 deletions

View File

@@ -1 +1 @@
releaser.maven.buildCommand: ./scripts/buildWithDocs.sh
releaser.maven.buildCommand: ./scripts/noIntegration.sh

10
scripts/fastBuild.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
source common.sh || source scripts/common.sh || echo "No common.sh script found..."
set -e
[[ -z "${CORES}" ]] && CORES=1
echo -e "\n\nRUNNING FAST BUILD (NO INTEGRATION TESTS) WITH [${CORES}] CORES\n\n"
./mvnw clean install -Pdocs,fast -T ${CORES}

View File

@@ -2,9 +2,9 @@
source common.sh || source scripts/common.sh || echo "No common.sh script found..."
FOLDER=`pwd`
set -e
[[ -z "${CORES}" ]] && CORES=1
echo -e "\n\nRUNNING FAST BUILD (NO INTEGRATION TESTS) WITH [${CORES}] CORES\n\n"
./mvnw clean install -Pdocs,fast -T ${CORES}
./mvnw clean install
${FOLDER}/scripts/generateDocs.sh