aoc2021/.drone.yml

23 lines
315 B
YAML
Raw Permalink Normal View History

2021-12-04 21:59:26 -05:00
kind: pipeline
type: docker
name: gcc
steps:
2021-12-08 18:35:56 -05:00
- name: c-test
2021-12-04 21:59:26 -05:00
image: voidlinux/voidlinux
commands:
2021-12-08 18:35:56 -05:00
- xbps-install -Sy gcc make
2021-12-08 18:16:32 -05:00
- cd c && make && ./run_all.sh && cd ..
2021-12-08 18:35:56 -05:00
---
kind: pipeline
type: docker
name: rust
steps:
- name: rust-test
image: rust:latest
commands:
2021-12-08 18:16:32 -05:00
- cd rust && ./run_all.sh && cd ..