Extensions to Basic Information Cluster; AttrId is now u32; report more global elements (Was: Chip tool tests)
#1157
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: "50 6 * * *" | |
| workflow_dispatch: | |
| env: | |
| RUST_TOOLCHAIN: stable | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| crypto-backend: ['rustcrypto', 'mbedtls', 'openssl'] | |
| features: ['', 'alloc', 'os'] | |
| steps: | |
| - name: Rust | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ env.RUST_TOOLCHAIN }} | |
| components: rustfmt, clippy, rust-src | |
| - name: Install libdbus | |
| run: sudo apt-get install -y libdbus-1-dev | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Fmt | |
| run: cargo fmt -- --check | |
| - name: Clippy | |
| run: cargo clippy --no-deps --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},log -- -Dwarnings | |
| - name: Clippy | defmt | |
| run: export DEFMT_LOG=trace;cargo clippy --no-deps --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},defmt -- -Dwarnings | |
| - name: Build | |
| run: cargo build --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},log | |
| - name: Benchmark | |
| run: cargo bench --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},log | |
| - name: Test | |
| if: matrix.features == 'os' | |
| run: cargo test --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},log | |
| - name: Examples | |
| if: matrix.features == 'os' | |
| run: cargo build --examples --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},examples,log |