Update README.md #5484
Workflow file for this run
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
name: Rust backend test for android | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable | |
jobs: | |
check: | |
name: Cargo test on Ubuntu | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1 | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout sources | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 50 | |
submodules: 'recursive' | |
- name: Install system dependancies | |
run: | | |
sudo apt update | |
sudo apt install -y clang libclang-dev libopencv-dev | |
- name: Install Rust stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo-nextest | |
uses: baptiste0928/cargo-install@1cd874a5478fdca35d868ccc74640c5aabbb8f1b # v3.0.0 | |
with: | |
crate: cargo-nextest | |
version: 0.9 | |
- name: Install uniffi_bindgen | |
uses: actions-rs/[email protected] | |
with: | |
crate: uniffi_bindgen | |
version: 0.22.0 # Must be in sync with version in Cargo.toml | |
use-tool-cache: true | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | |
with: | |
workspaces: rust -> rust/target | |
- name: cargo nextest | |
run: | | |
cd rust | |
cargo nextest run --retries 2 --locked | |
cargo nextest run --no-default-features --features active --retries 2 --locked | |
cargo nextest run --no-default-features --retries 2 --locked |