Update env_logger requirement from 0.10.0 to 0.11.1 in /rust #109
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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: Test with Code Coverage | |
jobs: | |
test: | |
name: Test | |
env: | |
PROJECT_NAME_UNDERSCORE: bft_bench | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: -Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort | |
RUSTDOCFLAGS: -Cpanic=abort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-dependencies | |
with: | |
path: | | |
~/.cargo/.crates.toml | |
~/.cargo/.crates2.json | |
~/.cargo/bin | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
rust/target | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }} | |
- run: sudo apt install -y protobuf-compiler libprotobuf-dev | |
- name: Run the short-circuit benchmark | |
run: | | |
cd rust | |
cargo run --bin bft-bench-shortcircuit -- --config bft-bench-shortcircuit/Benchmark.example.toml | |
- name: Generate test result and coverage report | |
run: | | |
cargo install cargo2junit grcov | |
cd rust | |
cargo test $CARGO_OPTIONS -- -Z unstable-options --format json | cargo2junit > results.xml | |
zip -0 ccov.zip `find . \( -name "$PROJECT_NAME_UNDERSCORE*.gc*" \) -print` | |
grcov ccov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" --ignore "tests/*" -o lcov.info | |
- name: Upload test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
check_name: Test Results | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
files: rust/results.xml | |
- name: Upload to CodeCov | |
uses: codecov/codecov-action@v1 | |
with: | |
# required for private repositories: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: rust/lcov.info | |
fail_ci_if_error: true |