File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -3,18 +3,31 @@ version: 2
3
3
jobs :
4
4
5
5
test :
6
- docker :
7
- - image : rustlang/rust:nightly-slim
6
+ machine :
7
+ image : ubuntu-1604:201903-01
8
8
environment :
9
9
CARGO_INCREMENTAL : 0
10
10
working_directory : ~/work
11
11
steps :
12
12
- run :
13
- name : Install Utilities
13
+ name : Install Prerequisites
14
14
command : |
15
- apt-get -y update
16
- apt-get -y install cmake curl libssl-dev pkg-config zlib1g-dev
17
- RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin
15
+ sudo apt-get -y update
16
+ sudo apt-get -y install cmake curl libssl-dev ninja-build pkg-config zlib1g-dev
17
+ - run :
18
+ name : Install Rust
19
+ command : |
20
+ curl -LO https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init
21
+ chmod +x rustup-init
22
+ ./rustup-init -y --no-modify-path
23
+ rm rustup-init
24
+ echo 'export PATH=$HOME/.cargo/bin:$PATH' >> $BASH_ENV
25
+ - run :
26
+ # https://discuss.circleci.com/t/cargo-tarpaulin-fails/30215/3
27
+ name : Install Tarpaulin
28
+ command : cargo install cargo-tarpaulin
29
+ environment :
30
+ RUSTFLAGS : --cfg procmacro2_semver_exempt
18
31
- checkout
19
32
- restore_cache :
20
33
keys :
You can’t perform that action at this time.
0 commit comments