23 lines
533 B
YAML
23 lines
533 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
|
||
|
steps:
|
||
|
- name: code-analysis
|
||
|
image: sonarsource/sonar-scanner-cli
|
||
|
detach: true
|
||
|
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
|
||
|
|
||
|
|
||
|
- name: build
|
||
|
image: mingc/android-build-box:latest
|
||
|
commands:
|
||
|
- ./gradlew build
|