Skip to content

Instantly share code, notes, and snippets.

@sh0rtcircuit
Last active October 13, 2021 08:37
Show Gist options
  • Save sh0rtcircuit/b6e631e476e1c9e9254a153e44251f5d to your computer and use it in GitHub Desktop.
Save sh0rtcircuit/b6e631e476e1c9e9254a153e44251f5d to your computer and use it in GitHub Desktop.
Azure Pipelines Skip Caching example
steps:
- script: |
if [[ "$(Build.SourceVersionMessage)" =~ "no-cache" ]]; then
echo "Setting SKIP_CACHE to true"
echo "##vso[task.setvariable variable=SKIP_CACHE]true"
else
echo "Setting SKIP_CACHE to false"
echo "##vso[task.setvariable variable=SKIP_CACHE]false"
fi
name: SkipCache
displayName: 'Check for no-cache message'
- task: Cache@2
displayName: Use cached Anaconda environment
inputs:
key: 'conda | "$(Agent.OS)" | requirements.txt'
path: $(CONDA_TEST_ENV_DIR)
cacheHitVar: CONDA_CACHE_RESTORED
condition: eq(variables.SKIP_CACHE, 'false')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment