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

This commit is contained in:
blackbeard420 2021-12-08 18:35:56 -05:00
parent 464b186cc2
commit 412836cdd4
Signed by: blackbeard420
GPG Key ID: 88C719E09CDDA4A5

View File

@ -3,10 +3,20 @@ type: docker
name: gcc
steps:
- name: build-test
- name: c-test
image: voidlinux/voidlinux
commands:
- xbps-install -Sy gcc make rustup
- rustup-init --default-toolchain stable
- xbps-install -Sy gcc make
- cd c && make && ./run_all.sh && cd ..
---
kind: pipeline
type: docker
name: rust
steps:
- name: rust-test
image: rust:latest
commands:
- cd rust && ./run_all.sh && cd ..