mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
22 lines
487 B
YAML
22 lines
487 B
YAML
|
version: 2
|
||
|
jobs:
|
||
|
build:
|
||
|
docker:
|
||
|
- image: circleci/rust:latest
|
||
|
|
||
|
steps:
|
||
|
- checkout
|
||
|
- restore_cache:
|
||
|
keys:
|
||
|
- v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|
||
|
|
||
|
- run: cargo test
|
||
|
|
||
|
- save_cache:
|
||
|
paths:
|
||
|
- /usr/local/cargo/registry
|
||
|
- target/debug/.fingerprint
|
||
|
- target/debug/build
|
||
|
- target/debug/deps
|
||
|
key: v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
|