This commit is contained in:
Lev Kokotov
2022-02-05 14:09:26 -08:00
parent 5931b6142e
commit f9bfae365f

View File

@@ -14,9 +14,17 @@ jobs:
# See: https://circleci.com/docs/2.0/configuration-reference/#steps # See: https://circleci.com/docs/2.0/configuration-reference/#steps
steps: steps:
- checkout - checkout
- restore_cache:
key: cargo-lock-{{ checksum "Cargo.lock" }}
- run: - run:
name: "Build" name: "Build"
command: "cargo build --release" command: "cargo build --release"
- save_cache:
key: cargo-lock-{{ checksum "Cargo.lock" }}
paths:
- target
- ~/.cargo
# Invoke jobs via workflows # Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows