chore(ci): move clippy to build step
ci/woodpecker/push/build Pipeline failed Details
ci/woodpecker/push/lint Pipeline failed Details

pull/11/head
Jef Roosens 2024-07-07 13:04:13 +02:00
parent c13b823682
commit 68ce684c77
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
2 changed files with 4 additions and 14 deletions

View File

@ -26,4 +26,7 @@ steps:
- cargo build --verbose
# Binaries, even debug ones, should be statically compiled
- '[ "$(readelf -d target/debug/rieterd | grep NEEDED | wc -l)" = 0 ]'
# Clippy also performs a full build, so putting it here saves the CI a
# lot of work
- rustup component add clippy
- cargo clippy -- --no-deps -Dwarnings

View File

@ -1,13 +0,0 @@
platform: 'linux/amd64'
when:
branch:
exclude: [main]
event: push
steps:
clippy:
image: 'rust:1.79-alpine3.19'
commands:
- rustup component add clippy
- cargo clippy -- --no-deps -Dwarnings