fish/.drone.yml

17 satır
376 B
YAML

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