mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
added gradle caching because willie says that worked for him
This commit is contained in:
parent
2e48c94d6c
commit
f523d85ac0
1 changed files with 8 additions and 0 deletions
|
@ -9,7 +9,15 @@ trigger:
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'ubuntu-latest'
|
vmImage: 'ubuntu-latest'
|
||||||
|
|
||||||
|
variables:
|
||||||
|
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- task: Cache@2
|
||||||
|
inputs:
|
||||||
|
key: 'gradle | "$(Agent.OS)"'
|
||||||
|
path: '$(GRADLE_USER_HOME)'
|
||||||
|
restoreKeys: 'gradle'
|
||||||
- task: Gradle@2
|
- task: Gradle@2
|
||||||
inputs:
|
inputs:
|
||||||
workingDirectory: ''
|
workingDirectory: ''
|
||||||
|
|
Loading…
Reference in a new issue