kind: pipeline type: docker steps: - name: build image: mingc/android-build-box:latest commands: - ./gradlew build - name: code-analysis image: mingc/android-build-box:latest failure: ignore commands: - ls -la - ./gradlew sonarqube -Dsonar.projectKey=RFS2 -Dsonar.sources=. -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN environment: SONAR_HOST_URL: from_secret: sonarScannerHostUrl SONAR_LOGIN: from_secret: sonarScannerLogin