object-detector/.drone.yml

15 lines
289 B
YAML
Raw Permalink Normal View History

2022-03-17 15:45:35 +04:00
kind: pipeline
name: default
steps:
- name: build
image: hub.aidev.ru/rust-onnxruntime:latest
commands:
- cargo build --verbose --all
- name: fmt-check
image: hub.aidev.ru/rust-onnxruntime:latest
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check