浏览代码

Remove pip cache fallback for CircleCI

This change removes the caching fallback in the case where dependencies
change, since it can cause CI failures when we have incompatible
dependencies in the cache.
/develop-gpu-test
Jonathan Harper 5 年前
当前提交
83f8d70d
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 2
      .circleci/config.yml

2
.circleci/config.yml


keys:
# Parameterize the cache so that different python versions can get different versions of the packages
- v1-dependencies-py<< parameters.pyversion >>-{{ checksum "python_deps.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-py<< parameters.pyversion >>-
- run:
name: Install Dependencies

正在加载...
取消
保存