domasi/.drone.yml

14 lines
262 B
YAML
Raw Permalink Normal View History

2021-01-28 04:44:13 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:latest
2021-01-28 04:44:13 +00:00
commands:
2021-01-28 04:48:36 +00:00
- apt-get update
- apt-get install -y libasound2-dev
- apt-get install -y libdbus-1-dev
2021-01-28 04:44:13 +00:00
- cargo build --verbose --all
- cargo test --verbose --all