rrcSmall/.drone.yml

20 lines
302 B
YAML
Raw Normal View History

2020-12-17 20:53:50 +00:00
---
kind: pipeline
type: docker
name: default
2020-12-31 00:22:14 +00:00
platform:
os: linux
arch: amd64
2020-12-17 20:53:50 +00:00
steps:
- name: build
image: ubuntu:20.04
commands:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y gcc g++ cmake
- mkdir build
- cd build
- cmake ..
- make
...