Skip to content

Commit 47a211a

Browse files
committed
Switch builds to circle
1 parent 9ec81b8 commit 47a211a

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

circle.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/build
5+
docker:
6+
- image: jimmycuadra/rust:1.18.0
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
key: registry
11+
- run: cargo generate-lockfile
12+
- save_cache:
13+
key: registry-{{ epoch }}
14+
paths:
15+
- ~/.cargo/registry/index
16+
- restore_cache:
17+
key: dependencies-1.18-{{ checksum "Cargo.lock" }}
18+
- run: cargo test
19+
- save_cache:
20+
key: dependencies-1.18-{{ checksum "Cargo.lock" }}
21+
paths:
22+
- target
23+
- ~/.cargo/registry/cache

0 commit comments

Comments
 (0)