raytracers/.drone.yml
Bill Thiede 3f3a102e4f
All checks were successful
continuous-integration/drone/push Build is passing
Add bheisler drone build.
2019-06-23 09:48:44 -07:00

35 lines
828 B
YAML

kind: pipeline
name: default
steps:
- name: debug
image: registry.z.xinu.tv/drone/rust:2019-06-22-r2
commands:
- env | sort
- find $PWD
- name: rtiow
image: registry.z.xinu.tv/drone/rust:2019-06-22-r2
commands:
- sccache -s
- apt-get update && apt-get install -y libgoogle-perftools-dev
- (cd rtiow && cargo build --verbose --all)
- (cd rtiow && cargo test --verbose --all)
- sccache -s
- name: aobench
image: registry.z.xinu.tv/drone/rust:2019-06-22-r2
commands:
- sccache -s
- (cd aobench && cargo build --verbose --all)
- (cd aobench && cargo test --verbose --all)
- sccache -s
- name: bheisler
image: registry.z.xinu.tv/drone/rust:2019-06-22-r2
commands:
- sccache -s
- (cd bheisler && cargo build --verbose --all)
- (cd bheisler && cargo test --verbose --all)
- sccache -s