ci: Update CI config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
f38c70373c
commit
55c5134840
1 changed files with 6 additions and 9 deletions
|
@ -1,40 +1,37 @@
|
||||||
pipeline:
|
pipeline:
|
||||||
fmt:
|
fmt:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- rustup component add rustfmt
|
|
||||||
- cargo fmt --all -- --check
|
- cargo fmt --all -- --check
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- rustup component add clippy
|
|
||||||
- cargo clippy --all-features
|
- cargo clippy --all-features
|
||||||
|
|
||||||
test:
|
test:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
||||||
build:
|
build:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- cargo build
|
- cargo build
|
||||||
- cargo build --release
|
- cargo build --release
|
||||||
|
|
||||||
build-deb:
|
build-deb:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- cargo install cargo-deb
|
|
||||||
- cargo deb
|
- cargo deb
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
group: default
|
group: default
|
||||||
image: rust
|
image: rust_full
|
||||||
commands:
|
commands:
|
||||||
- cargo doc
|
- cargo doc
|
||||||
|
|
Loading…
Reference in a new issue