drone build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
blackbeard420 2021-12-08 18:16:32 -05:00
parent 59c8c6dc98
commit a071f04f14
Signed by: blackbeard420
GPG Key ID: 88C719E09CDDA4A5
2 changed files with 11 additions and 2 deletions

View File

@ -7,5 +7,5 @@ steps:
image: voidlinux/voidlinux
commands:
- xbps-install -Sy gcc make
- make
- ./run_all.sh
- cd c && make && ./run_all.sh && cd ..
- cd rust && ./run_all.sh && cd ..

9
rust/run_all.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
DAYS="day7"
for x in $DAYS; do
cd $x
cargo run
cd ..
done