rrcSmall/.drone.yml
DataHoarder 81b89b8d11
All checks were successful
continuous-integration/drone/push Build is passing
Force drone to build on linux-amd64
2020-12-31 01:22:14 +01:00

20 lines
302 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
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
...