mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-02 16:49:12 +00:00
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
variables:
|
|
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
|
|
|
|
steps:
|
|
- task: CacheBeta@0
|
|
inputs:
|
|
key: $(Agent.OS)
|
|
path: $(GRADLE_USER_HOME)
|
|
displayName: "Gradle: setup build cache"
|
|
|
|
- task: SonarCloudPrepare@1
|
|
inputs:
|
|
SonarCloud: 'apollo-rsps-sonarcloud'
|
|
organization: 'apollo-rsps'
|
|
scannerMode: 'Other'
|
|
displayName: "SonarCloud: prepare analysis"
|
|
|
|
- task: Gradle@2
|
|
displayName: "Gradle: build"
|
|
inputs:
|
|
workingDirectory: ''
|
|
gradleWrapperFile: 'gradlew'
|
|
gradleOptions: '-Xmx3072m -Dorg.gradle.parallel=true -Dorg.gradle.caching=true -Dsonar.host.url=https://sonarcloud.io'
|
|
javaHomeOption: 'JDKVersion'
|
|
jdkVersionOption: '1.8'
|
|
jdkArchitectureOption: 'x64'
|
|
publishJUnitResults: true
|
|
testResultsFiles: '**/TEST-*.xml'
|
|
tasks: 'check jacocoTestReport sonarqube'
|
|
|
|
- script: |
|
|
./gradlew --stop
|
|
displayName: "Gradle: stop daemon"
|
|
|
|
- task: SonarCloudPublish@1
|
|
inputs:
|
|
pollingTimeoutSec: '300'
|
|
displayName: "SonarCloud: publish quality gate"
|
|
|
|
- script: |
|
|
bash <(curl -s https://codecov.io/bash) -t "${CODECOV_TOKEN}"
|
|
env:
|
|
CODECOV_TOKEN: $(CODECOV_TOKEN)
|
|
displayName: "Codecov: publish coverage" |