ci: run everything in pipeline in parallel
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
976c25ba1a
commit
f25ee6b943
1 changed files with 11 additions and 5 deletions
|
@ -1,34 +1,40 @@
|
||||||
pipeline:
|
pipeline:
|
||||||
doc:
|
|
||||||
image: rust
|
|
||||||
commands:
|
|
||||||
- cargo doc
|
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
|
group: default
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- rustup component add rustfmt
|
- rustup component add rustfmt
|
||||||
- cargo fmt --all -- --check
|
- cargo fmt --all -- --check
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
|
group: default
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- rustup component add clippy
|
- rustup component add clippy
|
||||||
- cargo clippy --all-features
|
- cargo clippy --all-features
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
group: default
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
group: default
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- cargo build
|
- cargo build
|
||||||
- cargo build --release
|
- cargo build --release
|
||||||
|
|
||||||
build-deb:
|
build-deb:
|
||||||
|
group: default
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- cargo install cargo-deb
|
- cargo install cargo-deb
|
||||||
- cargo deb
|
- cargo deb
|
||||||
|
|
||||||
|
doc:
|
||||||
|
group: default
|
||||||
|
image: rust
|
||||||
|
commands:
|
||||||
|
- cargo doc
|
||||||
|
|
Loading…
Reference in a new issue