clock_generator/.woodpecker.yml
finga afc4edab59
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci: Add release profile to CI pipeline
2022-04-08 01:15:32 +02:00

36 lines
643 B
YAML

pipeline:
fmt:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo fmt --all -- --check
clippy:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo clippy --all-features
doc:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo doc --all-features
build:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo build --all-features
build_release:
group: default
image: rust_avr
commands:
- cd firmware/rust/
- cargo build --all-features --release