2021-01-28 03:12:38 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: cargo test
|
2021-02-26 05:17:19 +00:00
|
|
|
image: rust:latest
|
2021-05-05 03:14:31 +00:00
|
|
|
commands:
|
|
|
|
- apt-get update
|
2021-07-09 06:30:40 +00:00
|
|
|
- apt-get install -y libudev-dev libasound2-dev
|
2021-05-05 03:17:15 +00:00
|
|
|
- cargo build --all
|
|
|
|
- cargo test --all
|