sonarqube/travis.sh

64 lines
1.7 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
2015-06-03 11:41:53 +02:00
./.travis/setup_ramdisk.sh
#
# Configure Maven settings and install some script utilities
#
configureTravis() {
mkdir -p ~/.local
2019-03-08 09:41:04 +01:00
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v55 | tar zx --strip-components 1 -C ~/.local
2015-07-24 16:35:08 +02:00
source ~/.local/bin/install
}
configureTravis
#
# Travis fails on timeout when build does not print logs
# during 10 minutes. This aims to bypass this
# behavior when building the slow sonar-server sub-project.
#
keep_alive() {
2018-03-20 20:43:10 +01:00
while true; do
echo -en "\a"
sleep 60
2018-03-20 20:43:10 +01:00
done
}
keep_alive &
# When a pull request is open on the branch, then the job related
# to the branch does not need to be executed and should be canceled.
# It does not book slaves for nothing.
# @TravisCI please provide the feature natively, like at AppVeyor or CircleCI ;-)
cancel_branch_build_with_pr || if [[ $? -eq 1 ]]; then exit 0; fi
case "$TARGET" in
BUILD)
git fetch --unshallow
./gradlew build --no-daemon --console plain
# the '-' at the end is needed when using set -u (the 'nounset' flag)
# see https://stackoverflow.com/a/9824943/641955
if [[ -n "${SONAR_TOKEN-}" ]]; then
./gradlew jacocoTestReport sonarqube --no-daemon --console plain \
-Dsonar.projectKey=org.sonarsource.sonarqube:sonarqube \
-Dsonar.organization=sonarsource \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login="$SONAR_TOKEN"
fi
2015-06-03 11:41:53 +02:00
;;
WEB_TESTS)
2018-03-23 17:17:10 +01:00
./gradlew :server:sonar-web:yarn :server:sonar-web:yarn_validate --no-daemon --console plain
./gradlew :server:sonar-vsts:yarn :server:sonar-vsts:yarn_validate --no-daemon --console plain
;;
*)
echo "Unexpected TARGET value: $TARGET"
exit 1
;;
2015-06-03 11:41:53 +02:00
esac