Add build number to cache key to hopefully fix ccache

This commit is contained in:
Scott Talbert
2022-05-03 22:53:53 -04:00
committed by Robin Dunn
parent 0ef7642f4f
commit 4091e718e7

View File

@@ -40,7 +40,7 @@ jobs:
- task: Cache@2
inputs:
key: 'ccache | "$(Agent.OS)" | "$(python.version)"'
key: 'ccache | "$(Agent.OS)" | "$(python.version)" | "$(Build.BuildNumber)"'
path: $(CCACHE_DIR)
restoreKeys: |
ccache | "$(Agent.OS)" | "$(python.version)"