chgk_ledb/.drone.yml

14 lines
257 B
YAML
Raw Normal View History

2022-10-12 15:01:38 +00:00
kind: pipeline
name: default
steps:
- name: test
image: rust:1-alpine
commands:
2022-10-12 15:07:50 +00:00
- apk add --no-cache musl-dev
2022-10-12 15:01:38 +00:00
- cargo build --verbose --all
- cargo test --verbose --all
2023-03-13 14:10:09 +00:00
environment:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
2022-10-12 15:01:38 +00:00