NaturesAura/azure-pipelines.yml

36 lines
904 B
YAML
Raw Normal View History

# Gradle
# Build your Java project and run tests with Gradle using a Gradle wrapper script.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
pool:
2020-02-07 03:31:20 +01:00
vmImage: 'windows-latest'
variables:
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
2020-02-07 13:22:42 +01:00
BUILD_NUMBER: $(Build.BuildId)
steps:
- task: Cache@2
inputs:
key: 'gradle | "$(Agent.OS)"'
path: '$(GRADLE_USER_HOME)'
restoreKeys: 'gradle'
- task: Gradle@2
2020-02-07 14:03:58 +01:00
env:
ACCESS_TOKEN: $(System.AccessToken)
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
2020-02-07 12:36:42 +01:00
options: '--no-daemon --build-cache'
gradleOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/TEST-*.xml'
tasks: 'clean build publish'