13 lines
248 B
YAML
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 ..
|