2022-12-19 02:47:40 +00:00
|
|
|
name: Rust code coverage
|
2022-10-11 11:54:31 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
2022-10-29 09:00:40 +00:00
|
|
|
- "release/*"
|
2022-10-11 11:54:31 +00:00
|
|
|
paths:
|
|
|
|
- "frontend/rust-lib/**"
|
|
|
|
- "shared-lib/**"
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2022-12-19 02:47:40 +00:00
|
|
|
tests:
|
2022-10-11 11:54:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2022-12-19 02:47:40 +00:00
|
|
|
|
2022-10-11 11:54:31 +00:00
|
|
|
- id: rust_toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: 'stable-2022-04-07'
|
|
|
|
|
|
|
|
- name: Cache Cargo
|
|
|
|
uses: actions/cache@v2
|
2022-12-19 02:47:40 +00:00
|
|
|
with:
|
2022-10-11 11:54:31 +00:00
|
|
|
path: |
|
|
|
|
~/.cargo
|
|
|
|
key: ${{ runner.os }}-cargo-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
|
|
|
|
|
|
|
|
- name: Cache Rust
|
|
|
|
uses: actions/cache@v2
|
2022-12-19 02:47:40 +00:00
|
|
|
with:
|
2022-10-11 11:54:31 +00:00
|
|
|
path: |
|
|
|
|
frontend/rust-lib/target
|
|
|
|
shared-lib/target
|
2022-12-19 02:47:40 +00:00
|
|
|
key: ${{ runner.os }}-rust-rust-lib-share-lib-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
|
2022-10-11 11:54:31 +00:00
|
|
|
|
|
|
|
|
2022-12-19 02:47:40 +00:00
|
|
|
- name: Install cargo-make
|
2022-10-11 11:54:31 +00:00
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
cargo install cargo-make
|
2022-12-19 02:47:40 +00:00
|
|
|
|
|
|
|
- name: Setup environment - Flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: 'stable'
|
|
|
|
flutter-version: '3.0.5'
|
|
|
|
|
|
|
|
- name: Install code-coverage tools
|
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
sudo wget -qO /etc/apt/trusted.gpg.d/dart_linux_signing_key.asc https://dl-ssl.google.com/linux/linux_signing_key.pub
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y build-essential libsqlite3-dev libssl-dev clang cmake ninja-build pkg-config libgtk-3-dev
|
|
|
|
sudo apt-get install keybinder-3.0
|
2022-10-11 11:54:31 +00:00
|
|
|
cargo install grcov
|
|
|
|
rustup component add llvm-tools-preview
|
|
|
|
|
2022-12-19 02:47:40 +00:00
|
|
|
- name: Run tests
|
2022-10-11 11:54:31 +00:00
|
|
|
working-directory: frontend
|
2022-12-19 02:47:40 +00:00
|
|
|
run: cargo make rust_unit_test_with_coverage
|