rrc-open-firmware/.drone.yml
DataHoarder c56536f3e9
All checks were successful
continuous-integration/drone/push Build is passing
Add g++ to drone build
2021-01-02 12:06:45 +01:00

20 lines
329 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive --remote
- name: build
image: alpine:latest
commands:
- apk add --update gcc g++ musl-dev make cmake
- make
...