29 lines
686 B
Bash
Executable File
29 lines
686 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source .travis/logger.sh
|
|
source .travis/common-functions.sh
|
|
|
|
VERSION=$(get_pom_version)
|
|
log_info "Building PMD Coveralls.io report ${VERSION} on branch ${TRAVIS_BRANCH}"
|
|
|
|
if ! travis_isPush; then
|
|
echo "Not proceeding, since this is not a push!"
|
|
exit 0
|
|
fi
|
|
|
|
(
|
|
# disable fast fail, exit immediately, in this subshell
|
|
set +e
|
|
|
|
./mvnw clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
|
./mvnw package jacoco:report coveralls:report -Pcoveralls -B -V
|
|
|
|
if [ $? -ne 0 ]; then
|
|
log_error "Error creating coveralls report"
|
|
else
|
|
log_success "New coveralls result: https://coveralls.io/github/pmd/pmd"
|
|
fi
|
|
true
|
|
)
|