File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2222 pull_request :
2323 branches :
2424 - master
25+ schedule :
26+ - cron : ' 0 12 * * *'
2527 workflow_dispatch :
2628
2729concurrency :
Original file line number Diff line number Diff line change 2424set -o pipefail
2525set -o errexit
2626
27- MVN_TEST_OPTIONS=' mvn -Pcoverage - B -ntp -DskipSourceReleaseAssembly=true -DskipBuildDistribution=true -Dspotbugs.skip=true -Dlicense.skip=true -Dcheckstyle.skip=true -Drat.skip=true'
27+ MVN_TEST_OPTIONS=' mvn -B -ntp -DskipSourceReleaseAssembly=true -DskipBuildDistribution=true -Dspotbugs.skip=true -Dlicense.skip=true -Dcheckstyle.skip=true -Drat.skip=true'
2828
2929function mvn_test() {
3030 (
@@ -33,7 +33,11 @@ function mvn_test() {
3333 clean_arg=" clean"
3434 shift
3535 fi
36- TARGET=verify
36+ if echo " ${FUNCNAME[@]} " | grep " flaky" ; then
37+ TARGET=" verify"
38+ else
39+ TARGET=" verify -Pcoverage"
40+ fi
3741 if [[ " $1 " == " --install" ]]; then
3842 TARGET=" install"
3943 shift
You can’t perform that action at this time.
0 commit comments