zabbixlaunch/.drone.yml

22 lines
431 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust:1
commands:
2022-03-11 23:43:16 +01:00
- apt-get update -y
- apt-get install libasound2-dev -y
- cargo build --verbose --all
- cargo test --verbose --all
- name: release
image: rust:1
commands:
2022-03-11 23:43:16 +01:00
- apt-get update -y
- apt-get install libasound2-dev -y
- cargo build --release --verbose --all
when:
event: tag