disabled clippy fix for github workflow
Rust/va416xx/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2021-12-10 13:23:30 +01:00
parent 24e1de7e02
commit 820293e3b3
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 20 additions and 17 deletions

View File

@ -36,23 +36,23 @@ jobs:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: thumbv7em-none-eabihf
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: clippy
args: --target thumbv7em-none-eabihf -- -D warnings
# clippy:
# name: Clippy
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# target: thumbv7em-none-eabihf
# override: true
# - run: rustup component add clippy
# - uses: actions-rs/cargo@v1
# with:
# use-cross: true
# command: clippy
# args: --target thumbv7em-none-eabihf -- -D warnings
ci:
if: ${{ success() }}

View File

@ -10,4 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [v0.1.0]
- Clippy currently complains about unsound code which should still work.
Related issue: https://github.com/rust-embedded/svd2rust/issues/557
Clippy is disabled in CI/CD for now.
- Initial release