Created
August 12, 2019 17:57
-
-
Save jraps20/ea29de8b45493dcfa0a1ec5b0af82337 to your computer and use it in GitHub Desktop.
Cache NuGet Packages with Cache Task in Azure DevOps YAML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- powershell: | # generates a hash of all packages.config and saves each on a single line on 'hash.txt' | |
Get-FileHash -Algorithm MD5 -Path (Get-ChildItem packages.config -Recurse) >> hash.txt | |
Write-Host "Hash File saved to $pwd\hash.txt" | |
workingDirectory: src | |
displayName: 'Calculate and save packages.config hash' | |
- task: CacheBeta@0 # speed up builds by caching packages folder | |
inputs: | |
key: nuget|1|$(Agent.OS)|$(Build.SourcesDirectory)\src\hash.txt # hash map generated in previous step | |
path: $(Build.SourcesDirectory)\src\packages | |
cacheHitVar: 'nuget_cache_hit' # variable that can be checked to see if it was successful | |
displayName: Cache nuget packages | |
continueOnError: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment