diff options
| author | 2020-03-09 17:58:54 -0700 | |
|---|---|---|
| committer | 2020-03-09 19:15:36 -0700 | |
| commit | 413f09fc4f200cab75ca64ec69cf82a125246dc0 (patch) | |
| tree | b439a921f4b9a0a50f3b422b873f7185d0bb9672 /azure-pipelines.yml | |
| parent | CI: prepend py user base to PATH (diff) | |
CI: invalidate caches
Diffstat (limited to 'azure-pipelines.yml')
| -rw-r--r-- | azure-pipelines.yml | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 079530cc8..3b0a23064 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -33,11 +33,11 @@ jobs:        - task: Cache@2          displayName: 'Restore Python environment'          inputs: -          key: python | $(Agent.OS) | "$(PythonVersion.pythonLocation)" | ./Pipfile | ./Pipfile.lock +          key: python | $(Agent.OS) | "$(PythonVersion.pythonLocation)" | 0 | ./Pipfile | ./Pipfile.lock            restoreKeys: | -            python | "$(PythonVersion.pythonLocation)" | ./Pipfile.lock -            python | "$(PythonVersion.pythonLocation)" | ./Pipfile -            python | "$(PythonVersion.pythonLocation)" +            python | "$(PythonVersion.pythonLocation)" | 0 | ./Pipfile.lock +            python | "$(PythonVersion.pythonLocation)" | 0 | ./Pipfile +            python | "$(PythonVersion.pythonLocation)" | 0            cacheHitVar: PY_ENV_RESTORED            path: $(PYTHONUSERBASE) @@ -66,9 +66,9 @@ jobs:        - task: Cache@2          displayName: 'Restore pre-commit environment'          inputs: -          key: pre-commit | "$(PythonVersion.pythonLocation)" | .pre-commit-config.yaml +          key: pre-commit | "$(PythonVersion.pythonLocation)" | 0 | .pre-commit-config.yaml            restoreKeys: | -            pre-commit | "$(PythonVersion.pythonLocation)" +            pre-commit | "$(PythonVersion.pythonLocation)" | 0            path: $(PRE_COMMIT_HOME)        - script: pre-commit run --all-files  |