libpso/.drone.yml

34 lines
550 B
YAML
Raw Normal View History

2019-09-07 14:58:51 -07:00
---
kind: pipeline
2019-09-11 00:26:15 -04:00
type: docker
name: test libpso
2019-09-07 14:58:51 -07:00
steps:
- name: cargo build
2019-09-11 00:26:15 -04:00
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
2019-09-13 18:26:57 -07:00
- name: target-cache
2019-09-11 00:26:15 -04:00
path: /drone/src/target
commands:
2019-09-07 19:34:30 -07:00
- cargo build
- name: cargo test
2019-09-11 00:26:15 -04:00
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
2019-09-13 18:26:57 -07:00
- name: target-cache
2019-09-11 00:26:15 -04:00
path: /drone/src/target
commands:
2019-09-07 14:58:51 -07:00
- cargo test
2019-09-11 00:26:15 -04:00
volumes:
- name: cache
host:
path: /home/drone/.cargo
- name: target-cache
host:
path: /home/drone/cargo-cache