raytracers/.drone.yml
Bill Thiede e8be4d2e0d
Some checks failed
continuous-integration/drone/push Build is failing
drone: add rust versions to debugging phase.
2019-10-13 09:56:52 -07:00

37 lines
811 B
YAML

kind: pipeline
name: default
steps:
- name: debug
image: registry.z.xinu.tv/drone/omnibus
commands:
- env | sort
- cargo version
- rustc -V
- find $PWD
- name: rtiow
image: registry.z.xinu.tv/drone/omnibus
commands:
- sccache -s
- apt-get update && apt-get install -y libgoogle-perftools-dev
- (cd rtiow && ./build_all_features.sh)
- (cd rtiow && cargo test --verbose --all)
- sccache -s
- name: aobench
image: registry.z.xinu.tv/drone/omnibus
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/omnibus
commands:
- sccache -s
- (cd bheisler && cargo build --verbose --all)
- (cd bheisler && cargo test --verbose --all)
- sccache -s