From 4091e718e7b67ace6e0865cc11051c43b3a8f019 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Tue, 3 May 2022 22:53:53 -0400 Subject: [PATCH] Add build number to cache key to hopefully fix ccache --- .azure/ci-linux-job.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/ci-linux-job.yml b/.azure/ci-linux-job.yml index 32c6447f..d723d950 100644 --- a/.azure/ci-linux-job.yml +++ b/.azure/ci-linux-job.yml @@ -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)"