Skip to content

Commit fcac5e7

Browse files
committedSep 17, 2019
Use machine executor to fix code coverage report
1 parent a4a993e commit fcac5e7

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed
 

‎.circleci/config.yml

+19-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,31 @@ version: 2
33
jobs:
44

55
test:
6-
docker:
7-
- image: rustlang/rust:nightly-slim
6+
machine:
7+
image: ubuntu-1604:201903-01
88
environment:
99
CARGO_INCREMENTAL: 0
1010
working_directory: ~/work
1111
steps:
1212
- run:
13-
name: Install Utilities
13+
name: Install Prerequisites
1414
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
1831
- checkout
1932
- restore_cache:
2033
keys:

0 commit comments

Comments
 (0)
Please sign in to comment.