Skip to content

Commit

Permalink
feat(infra): grcov
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wing committed Nov 22, 2024
1 parent abf6674 commit 0b13f02
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 57 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/grcov.yml

This file was deleted.

76 changes: 63 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,75 @@
name: Rust
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
on: [ push, pull_request ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
test:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup ffmpeg
uses: AnimMouse/setup-ffmpeg@v1
- name: Show version information
run: |
ffmpeg -version
ffprobe -version
- name: Install grcov
run: cargo install grcov
- name: Run tests
run: cargo test --all --verbose
env:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: '-Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort -Cdebug-assertions=off -Cprofile-generate=target/debug'

- name: Generate coverage data
run: |
grcov target/debug/ \
--branch \
--llvm \
--source-dir . \
--output-path lcov.info \
--ignore='/**' \
--ignore='C:/**' \
--ignore='../**' \
--ignore-not-existing \
--excl-line "#\\[derive\\(" \
--excl-br-line "#\\[derive\\(" \
--excl-start "#\\[cfg\\(test\\)\\]" \
--excl-br-start "#\\[cfg\\(test\\)\\]" \
--commit-sha ${{ github.sha }} \
--service-job-id ${{ github.job }} \
--service-name "GitHub Actions" \
--service-number ${{ github.run_id }}
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v4
with:
file: lcov.info
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

e2e:
needs: [test, check_format, check_clippy]
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}

steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install npm dependencies
Expand All @@ -34,16 +84,15 @@ jobs:
run: |
ffmpeg -version
ffprobe -version
- name: Run tests
run: cargo test --all --verbose
- name: Run e2e tests
if: ${{ matrix.os != 'windows-latest' }}
run: npm run e2e:cluster

check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout source code
uses: actions/checkout@v4
- name: Show version information
run: |
cargo --version
Expand All @@ -55,7 +104,8 @@ jobs:
check_clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout source code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
Expand Down

0 comments on commit 0b13f02

Please sign in to comment.