only build defmt
feature on stable rust + update dependencies
#87
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: CI | |
permissions: | |
security-events: write # needed to upload SARIF reports on branch builds | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
jobs: | |
lib: | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [1.62.0, stable] | |
features: ['use_alloc', 'use_alloc,defmt', 'use_heapless', 'use_heapless,defmt'] | |
exclude: | |
- rust: 1.62.0 | |
features: 'use_alloc,defmt' | |
- rust: 1.62.0 | |
features: 'use_heapless,defmt' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt clippy | |
- name: Install required cargo components | |
run: cargo +stable install clippy-sarif sarif-fmt | |
- name: build | |
run: cargo build --features ${{ matrix.features }} | |
- name: check | |
run: cargo check --features ${{ matrix.features }} | |
- name: test | |
run: cargo test --features ${{ matrix.features }} | |
- name: check formatting | |
run: cargo fmt --all -- --check | |
- name: audit | |
run: cargo audit | |
- name: clippy (lib) | |
run: cargo clippy --features ${{ matrix.features }} --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt | |
continue-on-error: true | |
- name: Upload analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: rust-clippy-results.sarif | |
wait-for-processing: true | |
stm32f4-event-printer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: thumbv7em-none-eabihf | |
components: rustfmt clippy | |
- name: Install required cargo components | |
run: cargo install clippy-sarif sarif-fmt flip-link | |
- name: build | |
run: cargo build | |
working-directory: examples/stm32f4-event-printer | |
- name: check | |
run: cargo check | |
working-directory: examples/stm32f4-event-printer | |
# no tests available for now => no test step as it'd fail otherwise | |
- name: check formatting | |
run: cargo fmt --all -- --check | |
working-directory: examples/stm32f4-event-printer | |
- name: audit | |
run: cargo audit | |
working-directory: examples/stm32f4-event-printer | |
- name: clippy (example) | |
# see the following comment for the patching workaround: https://github.com/psastras/sarif-rs/issues/370#issuecomment-1475364427 | |
run: | | |
cargo clippy --message-format=json | \ | |
clippy-sarif | \ | |
jq --arg pwd "examples/stm32f4-event-printer" '.runs[].results[].locations[].physicalLocation.artifactLocation.uri |= $pwd + "/" + .' | \ | |
tee rust-clippy-results.sarif | \ | |
sarif-fmt | |
working-directory: examples/stm32f4-event-printer | |
- name: Upload analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: examples/stm32f4-event-printer/rust-clippy-results.sarif | |
wait-for-processing: true |