aoc2021/.drone.yml
blackbeard420 200e5125f9
Some checks failed
continuous-integration/drone/push Build is failing
test
2021-12-08 18:24:20 -05:00

13 lines
248 B
YAML

kind: pipeline
type: docker
name: gcc
steps:
- name: build-test
image: voidlinux/voidlinux
commands:
- xbps-install -Sy gcc make rustup
- rustup install stable
- cd c && make && ./run_all.sh && cd ..
- cd rust && ./run_all.sh && cd ..