ci: store HTML coverage report #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
#container: | |
# image: centos8 | |
steps: | |
- uses: dtolnay/rust-toolchain@1.69.0 | |
- uses: actions/checkout@v3 | |
- name: Preparing | |
run: sudo apt update && sudo apt install -y libxen-dev protobuf-compiler | |
- name: Build | |
run: cargo build --verbose | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- name: Run tests | |
run: | | |
cargo clean | |
cargo test --verbose | |
env: | |
CARGO_INCREMENTAL: '0' | |
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
- name: Test coverage report | |
run: grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o ./target/debug/coverage/ | |
- name: Upload test coverage report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-html | |
path: ./target/debug/coverage/ |