testobuild/.drone.yml

22 lines
253 B
YAML
Raw Normal View History

2020-04-17 16:17:19 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: build
2020-04-17 17:53:45 +00:00
image: gcc
2020-04-17 16:17:19 +00:00
commands:
- mkdir build
- cd build
- cmake ..
- make
steps:
- name: test
image: alpine
commands:
- mkdir build
- cd build
- cmake ..
- make
- ./testbin