From 11c9509a423dc5c3fb2a084987bd6dd6e78004e5 Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Mon, 16 Jan 2017 13:37:06 +0100 Subject: [PATCH] Fixed the parallel build first we need to build the libs and ony then run the integration tests --- scripts/parallelBuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/parallelBuild.sh b/scripts/parallelBuild.sh index e8e2570ce6..8942800822 100755 --- a/scripts/parallelBuild.sh +++ b/scripts/parallelBuild.sh @@ -7,4 +7,4 @@ set -e [[ -z "${CORES}" ]] && CORES=8 echo -e "\n\nRUNNING PARALLEL BUILD WITH [${CORES}] CORES\n\n" -./mvnw clean install -Pintegration,docs -T ${CORES} -Dinvoker.parallelThreads=${CORES} \ No newline at end of file +./mvnw clean install -Pdocs -T ${CORES} && ./mvnw install -Pintegration -T ${CORES} -Dinvoker.parallelThreads=${CORES} -pl :spring-cloud-contract-samples \ No newline at end of file