CircleCI 2nd try

This commit is contained in:
rocky
2019-08-21 08:50:38 -04:00
parent 8728cb6a99
commit 90a2ed2c9e

View File

@@ -48,16 +48,15 @@ jobs:
# Restore the dependency cache # Restore the dependency cache
- restore_cache: - restore_cache:
keys: keys:
# This branch if available - v2-dependencies-{{ .Branch }}-
- v1-dep-{{ .Branch }}- # fallback to using the latest cache if no exact match is found
# Default branch if not - v2-dependencies-
- v1-dep-master-
# Any branch if there are none on the default branch - this should be unnecessary if you have your default branch configured correctly
- v1-dep-
# This is based on your 1.0 configuration file or project settings # This is based on your 1.0 configuration file or project settings
- run: pip install --upgrade setuptools - run: pip install --upgrade setuptools
- run: pip install -e . - run: pip install -e .
- run: pip install pytest==3.2.5 hypothesis==3.0.0 - run: pip install pytest==3.2.5 hypothesis==3.0.0
# Save dependency cache # Save dependency cache
- save_cache: - save_cache:
key: v2-dependencies-{{ .Branch }}-{{ epoch }} key: v2-dependencies-{{ .Branch }}-{{ epoch }}
@@ -70,6 +69,7 @@ jobs:
- ~/.ivy2 - ~/.ivy2
- ~/.bundle - ~/.bundle
- ~/.cache/bower - ~/.cache/bower
# Test # Test
# This would typically be a build job when using workflows, possibly combined with build # This would typically be a build job when using workflows, possibly combined with build
# This is based on your 1.0 configuration file or project settings # This is based on your 1.0 configuration file or project settings