fish/.drone.yml

20 lines
432 B
YAML
Raw Normal View History

pipeline:
build:
image: gcc
commands:
- apt update
- apt -y install make cmake gcc python libpcre3 lippcre3-dev
- mkdir cmake-build
- cd cmake-build
- cmake ..
- make
test:
image: gcc
commands:
- apt update
- apt -y install make cmake gcc python libpcre3 lippcre3-dev
- mkdir cmake-build
- cd cmake-build
- cmake ..
- make
- make test