mirror of
https://github.com/sonarsource/sonarcloud-github-action.git
synced 2026-06-06 03:17:07 +00:00
30 lines
992 B
Bash
Executable file
30 lines
992 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ -z "${SONAR_TOKEN}" ]]; then
|
|
echo "Set the SONAR_TOKEN env variable."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -f "${INPUT_PROJECTBASEDIR%/}/pom.xml" ]]; then
|
|
echo "WARNING! Maven project detected. Sonar recommends running the 'org.sonarsource.scanner.maven:sonar-maven-plugin:sonar' goal during the build process instead of using this GitHub Action
|
|
to get more accurate results."
|
|
fi
|
|
|
|
if [[ -f "${INPUT_PROJECTBASEDIR%/}/build.gradle" || -f "${INPUT_PROJECTBASEDIR%/}/build.gradle.kts" ]]; then
|
|
echo "WARNING! Gradle project detected. Sonar recommends using the SonarQube plugin for Gradle during the build process instead of using this GitHub Action
|
|
to get more accurate results."
|
|
fi
|
|
|
|
if [[ -z "${SONARCLOUD_URL}" ]]; then
|
|
SONARCLOUD_URL="https://sonarcloud.io"
|
|
fi
|
|
|
|
|
|
debug=""
|
|
[[ "$RUNNER_DEBUG" == '1' ]] && debug="yes"
|
|
|
|
unset JAVA_HOME
|
|
|
|
sonar-scanner ${debug:+"--debug"} -Dsonar.projectBaseDir="${INPUT_PROJECTBASEDIR}" -Dsonar.host.url="${SONARCLOUD_URL}" "${INPUT_ARGS}"
|