#!/bin/bash ## ## To include test coverage data, use -Djacoco.skip=false parameter. ## This will gather the coverage data into target/jacoco.exec file and ## generate the coverage report for each module in keycloak/model/*/target/site. ## cd "$(dirname $0)" mvn -version EXIT_CODE=0 mvn clean for I in `perl -ne 'print "$1\n" if (m,([^<]+),)' pom.xml`; do echo "========" echo "======== Profile $I" echo "========" mvn -B test "-P$I" "$@" EXIT_CODE=$[$EXIT_CODE + $?] mv target/surefire-reports "target/surefire-reports-$I" done ## If the jacoco file is present, generate reports in each of the model projects [ -f target/jacoco.exec ] && mvn -f ../../model org.jacoco:jacoco-maven-plugin:0.8.7:report -Djacoco.dataFile="$(readlink -f target/jacoco.exec)" for I in `perl -ne 'print "$1\n" if (m,([^<]+),)' pom.xml`; do grep -A 1 --no-filename '<<<' "target/surefire-reports-$I"/*.txt | perl -pe "print '::error::| $I | ';" done exit $EXIT_CODE