mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-23 23:47:14 +08:00
19 lines
431 B
YAML
19 lines
431 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
working_directory: ~/blockstack
|
|
docker:
|
|
- image: ablankstein/circleci-rust-kcov
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
command: |
|
|
cargo build
|
|
- run:
|
|
environment:
|
|
RUST_BACKTRACE: 1
|
|
BLOCKSTACK_DEBUG: 1
|
|
RUSTFLAGS: -Clink-dead-code
|
|
command: |
|
|
cargo kcov && bash <(curl -s https://codecov.io/bash)
|