We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9f188 commit dd00993Copy full SHA for dd00993
.azure-pipelines.yml
@@ -52,9 +52,12 @@ jobs:
52
timeoutInMinutes: 240
53
54
steps:
55
- # set up caches:
+ # Ccache caching:
56
# - once stored under a key, they become immutable (even if cache content changes)
57
# - for a refresh the key has to change, e.g., hash of a tracked file in the key
58
+ - bash: |
59
+ mkdir -p /home/vsts/.ccache
60
+ displayName: 'Create Ccache Directory'
61
- task: Cache@2
62
continueOnError: true
63
inputs:
@@ -64,7 +67,7 @@ jobs:
64
67
Ccache | "$(System.JobName)" | .azure-pipelines.yml
65
68
path: /home/vsts/.ccache
66
69
cacheHitVar: CCACHE_CACHE_RESTORED
- displayName: Cache Ccache Objects
70
+ displayName: 'Cache Ccache Objects'
71
72
- bash: |
73
set -o nounset errexit pipefail
0 commit comments