AoC2020/.drone.yml
Gaël Berthaud-Müller 1ea15a5f12
All checks were successful
continuous-integration/drone/push Build is passing
fix cache
2020-12-30 16:01:19 -05:00

21 lines
351 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
commands:
- cargo build --release
- cargo test --release
- name: run-challenges
image: rustlang/rust:nightly
volumes:
- name: cache
path: /usr/local/cargo
commands:
- sh .ci/run.sh