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
|
2023-01-03 14:34:55 +00:00
|
|
|
FLUTTER_VERSION: "3.3.9"
|
|
|
|
RUST_TOOLCHAIN: "1.65"
|
2022-10-11 11:54:31 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-12-19 02:47:40 +00:00
|
|
|
tests:
|
2022-10-11 11:54:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-03 16:02:13 +00:00
|
|
|
- name: Checkout source code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2023-01-03 14:34:55 +00:00
|
|
|
- name: Install Rust toolchain
|
|
|
|
id: rust_toolchain
|
2022-10-11 11:54:31 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2023-01-03 14:34:55 +00:00
|
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
|
|
target: ${{ matrix.job.target }}
|
|
|
|
override: true
|
|
|
|
profile: minimal
|
2022-10-11 11:54:31 +00:00
|
|
|
|
2023-01-03 14:34:55 +00:00
|
|
|
- name: Install flutter
|
|
|
|
id: flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
2022-12-19 02:47:40 +00:00
|
|
|
with:
|
2023-01-03 14:34:55 +00:00
|
|
|
channel: "stable"
|
|
|
|
flutter-version: ${{ env.FLUTTER_VERSION }}
|
|
|
|
cache: true
|
2022-10-11 11:54:31 +00:00
|
|
|
|
2023-01-03 14:34:55 +00:00
|
|
|
- name: Install prerequisites
|
2022-10-11 11:54:31 +00:00
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
2023-01-03 14:34:55 +00:00
|
|
|
cargo install --force cargo-make
|
|
|
|
cargo install --force duckscript_cli
|
2022-12-19 02:47:40 +00:00
|
|
|
|
2023-01-03 14:34:55 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-12-19 02:47:40 +00:00
|
|
|
with:
|
2023-01-03 14:34:55 +00:00
|
|
|
prefix-key: ${{ matrix.job.os }}
|
2022-12-19 02:47:40 +00:00
|
|
|
|
|
|
|
- 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 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
|