circleci: disable imperfect match on the rust cache

The cache keeps growing as stale packages accumulate; until we can
figure out a better strategy, just start over every time Cargo.lock
changes.
This commit is contained in:
Eric Seppanen
2021-05-03 23:53:59 -07:00
parent f5b45a172c
commit 86932c20eb

View File

@@ -63,7 +63,8 @@ jobs:
# Choose an exact match first, if it exists.
- rust-cache-deps-v01-{{ checksum "Cargo.lock" }}
# Fall back to an out of date cache. Cargo can figure out what needs rebuilding.
- rust-cache-deps-v01-
# FIXME: imperfect match disabled due to issue #90.
#- rust-cache-deps-v01-
# Build the rust code, including test binaries
- run: cargo build --bins --tests