diff --git a/.drone.yml b/.drone.yml index 76ac149..130d018 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,18 +1,19 @@ kind: pipeline type: docker -environment: - SONAR_HOST_URL: - from_secret: sonarScannerHostUrl - SONAR_LOGIN: - from_secret: sonarScannerLogin - steps: - name: code-analysis image: sonarsource/sonar-scanner-cli + detach: true + failure: ignore commands: - ls -la - sonar-scanner -Dsonar.projectKey=LDC-WWW -Dsonar.sources=. -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN + environment: + SONAR_HOST_URL: + from_secret: sonarScannerHostUrl + SONAR_LOGIN: + from_secret: sonarScannerLogin - name: build