PK
sonarqube-check:
stage: sonarqube-check
image: sonarsource/sonar-scanner-cli:latest
variables:
SONAR_TOKEN: "token"
SONAR_HOST_URL: "url"
GIT_DEPTH: 0
script:
- sonar-scanner -Dsonar.projectName=agents -Dsonar.host.url="$SONAR_HOST_URL" -Dsonar.login="$SONAR_TOKEN" -Dsonar.branch="$CI_COMMIT_BRANCH" -Dsonar.projectKey="$CI_PROJECT_ID" -Dsonar.sources=. -Dsonar.exclusions=target/** -Dsonar.qualitygate.wait=true
allow_failure: true
only:
- merge_requests
- sonar-test
в какой момент я свернул не туда?