From 524a6ef217856130cfa7cda81d0392241a34a900 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 10 Jul 2018 11:59:04 -0400 Subject: [PATCH] Use the moved project paths now because the bootstrap step is what does the moving --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b747c6db9..6c4590396 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -87,7 +87,7 @@ jobs: keys: # An exact match on the http cache key is great. It should have # exactly the packages (tgz, whl, whatever) we need. - - v4-pip-http-{{ checksum "setup.py" }}-{{ checksum "src/allmydata/_auto_deps.py" }} + - v4-pip-http-{{ checksum "/tmp/project/setup.py" }}-{{ checksum "/tmp/project/src/allmydata/_auto_deps.py" }} # A prefix match is okay too. It might have a # partially-overlapping set of packages. That's a head-start, at # least. We might have to download a few more things but at least @@ -103,7 +103,7 @@ jobs: # There are binary wheels in this wheelhouse and we're not taking # care to make manylinux1 wheels. The binary wheels in this cache # will only work on some Linux distros. - - v3-wheelhouse-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "src/allmydata/_auto_deps.py" }} + - v3-wheelhouse-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/project/setup.py" }}-{{ checksum "/tmp/project/src/allmydata/_auto_deps.py" }} # A partial match is okay too. It'll get us at least some of the # wheels. We do need to keep the job name as part of the key or # we might get binary wheels build against an incompatible ABI and