chip8/.drone.yml

13 lines
225 B
YAML
Raw Permalink Normal View History

2021-01-28 04:32:53 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:latest
2021-01-28 04:32:53 +00:00
commands:
- apt-get update
- apt-get install -y libasound2-dev
2021-01-28 04:32:53 +00:00
- cargo build --verbose --all
- cargo test --verbose --all