fish/.drone.yml

17 lines
376 B
YAML
Raw Permalink Normal View History

pipeline:
build:
image: gcc
commands:
- apt update
2018-06-24 23:47:40 +00:00
- apt -y install make cmake gcc python libpcre3 libpcre3-dev
- mkdir cmake-build
- cd cmake-build
- cmake ..
- make
test:
image: gcc
commands:
- apt update
2018-06-24 23:47:40 +00:00
- apt -y install make cmake gcc python libpcre3 libpcre3-dev
- cd cmake-build
- make test