Last active
October 13, 2021 08:37
-
-
Save sh0rtcircuit/b6e631e476e1c9e9254a153e44251f5d to your computer and use it in GitHub Desktop.
Azure Pipelines Skip Caching example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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