-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1.45 KB
/
server-coverage.yml
File metadata and controls
43 lines (35 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Server Coverage
on:
push:
branches: [ main, staging, trying ]
pull_request:
branches: [ main ]
jobs:
server_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Select Rust nightly build
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Test with profiling
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --no-fail-fast --manifest-path server/Cargo.toml
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: Install grcov
run: curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf -
- name: Run grcov
run: |
mkdir coverage
./grcov ./target/debug/ -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" \
--excl-line '#\[|=> panic!|unreachable!|Io\(std::io::Error\)' \
--excl-br-line '#\[|=> panic!|unreachable!|assert_..!|assert_approx_eq!' -o ./coverage/lcov.info
- name: Upload to Codecov
uses: codecov/codecov-action@v1