testobuild/.drone.yml

22 lines
256 B
YAML
Raw Normal View History

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