aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci/travis/build.sh19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh
index 35bff74df..78fd75c52 100755
--- a/src/scripts/ci/travis/build.sh
+++ b/src/scripts/ci/travis/build.sh
@@ -62,20 +62,23 @@ if [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] && [
# Analysis is done only on master so that build of branches don't push analyses to the same project and therefore "pollute" the results
echo "Starting analysis by SonarQube..."
sonar-scanner -Dsonar.login=$SONAR_TOKEN
-elif [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ -n "${GITHUB_TOKEN-}" ] && [ "$BUILD_MODE" = "sonarqube" ]; then
+fi
+
+# PR analysis deactivated at least until custom quality profiles can be created
+#elif [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ -n "${GITHUB_TOKEN-}" ] && [ "$BUILD_MODE" = "sonarqube" ]; then
# => This will analyse the PR and display found issues as comments in the PR, but it won't push results to the SonarQube server
#
# For security reasons environment variables are not available on the pull requests
# coming from outside repositories
# http://docs.travis-ci.com/user/pull-requests/#Security-Restrictions-when-testing-Pull-Requests
# That's why the analysis does not need to be executed if the variable GITHUB_TOKEN is not defined.
- echo "Starting Pull Request analysis by SonarQube..."
- sonar-scanner -Dsonar.login=$SONAR_TOKEN \
- -Dsonar.analysis.mode=preview \
- -Dsonar.github.oauth=$GITHUB_TOKEN \
- -Dsonar.github.repository=$TRAVIS_REPO_SLUG \
- -Dsonar.github.pullRequest=$TRAVIS_PULL_REQUEST
-fi
+# echo "Starting Pull Request analysis by SonarQube..."
+# sonar-scanner -Dsonar.login=$SONAR_TOKEN \
+# -Dsonar.analysis.mode=preview \
+# -Dsonar.github.oauth=$GITHUB_TOKEN \
+# -Dsonar.github.repository=$TRAVIS_REPO_SLUG \
+# -Dsonar.github.pullRequest=$TRAVIS_PULL_REQUEST
+#fi
# When neither on master branch nor on a non-external pull request => nothing to do
if [ "$MODULES" != "min" ] && [ "${TARGETOS:0:3}" != "ios" ] && [ "$BUILD_MODE" != "sonarqube" ]; then