Files
spring-boot/ci/scripts/build-pr-project.sh
Andy Wilkinson 68324c4143 Build pull requests with --continue
Closes gh-22645
2020-07-29 17:54:54 +01:00

9 lines
210 B
Bash

#!/bin/bash
set -e
source $(dirname $0)/common.sh
pushd git-repo > /dev/null
./gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 --continue build
popd > /dev/null