zabbixlaunch/.drone.yml
Paul Lecuq 811f1155a9
All checks were successful
continuous-integration/drone/push Build is passing
updated .drone.yml
2022-03-11 23:43:21 +01:00

22 lines
431 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust:1
commands:
- apt-get update -y
- apt-get install libasound2-dev -y
- cargo build --verbose --all
- cargo test --verbose --all
- name: release
image: rust:1
commands:
- apt-get update -y
- apt-get install libasound2-dev -y
- cargo build --release --verbose --all
when:
event: tag