mirror of
https://github.com/SonarSource/sonarqube-quality-gate-action.git
synced 2026-09-23 13:38:32 +00:00
49 lines
1.5 KiB
Bash
Executable File
49 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source "$(dirname "$0")/common.sh"
|
|
|
|
if [[ -z "${SONAR_TOKEN}" ]]; then
|
|
echo "Set the SONAR_TOKEN env variable."
|
|
exit 1
|
|
fi
|
|
|
|
metadataFile="$1"
|
|
|
|
if [[ ! -f "$metadataFile" ]]; then
|
|
echo "$metadataFile does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
serverUrl="$(sed -n 's/serverUrl=\(.*\)/\1/p' ${metadataFile})"
|
|
ceTaskUrl="$(sed -n 's/ceTaskUrl=\(.*\)/\1/p' ${metadataFile})"
|
|
|
|
if [ -z "${serverUrl}" ] || [ -z "${ceTaskUrl}" ]; then
|
|
echo "Invalid report metadata file."
|
|
exit 1
|
|
fi
|
|
|
|
task="$(curl --silent --fail --show-error --user ${SONAR_TOKEN}: ${ceTaskUrl})"
|
|
status="$(jq -r '.task.status' <<< "$task")"
|
|
|
|
until [[ ${status} != "PENDING" && ${status} != "IN_PROGRESS" ]]; do
|
|
printf '.'
|
|
sleep 5s
|
|
task="$(curl --silent --fail --show-error --user ${SONAR_TOKEN}: ${ceTaskUrl})"
|
|
status="$(jq -r '.task.status' <<< "$task")"
|
|
done
|
|
|
|
analysisId="$(jq -r '.task.analysisId' <<< "${task}")"
|
|
qualityGateUrl="${serverUrl}/api/qualitygates/project_status?analysisId=${analysisId}"
|
|
qualityGateStatus="$(curl --silent --fail --show-error --user ${SONAR_TOKEN}: ${qualityGateUrl} | jq -r '.projectStatus.status')"
|
|
|
|
if [[ ${qualityGateStatus} == "OK" ]];then
|
|
success "Quality Gate has PASSED."
|
|
elif [[ ${qualityGateStatus} == "WARN" ]];then
|
|
warn "Warnings on Quality Gate."
|
|
elif [[ ${qualityGateStatus} == "ERROR" ]];then
|
|
fail "Quality Gate has FAILED."
|
|
else
|
|
fail "Quality Gate not set for the project. Please configure the Quality Gate in SonarQube or remove sonarqube-quality-gate action from the workflow."
|
|
fi
|
|
|