expandurl-mastodon/.drone.yml

25 lines
756 B
YAML
Raw Normal View History

pipeline:
download:
image: plugins/download
source: https://schlomp.space/attachments/dbc2b2b0-86c9-4aee-ac99-9cb9e91a82ed
destination: mastodon-cpp.deb
2018-06-12 08:14:57 +02:00
build:
image: debian:buster-slim
pull: true
commands:
2018-06-13 00:56:02 +02:00
- apt-get update -q
- apt-get install -qy build-essential cmake pkg-config
- apt-get install -qy libcurl4-openssl-dev libcurlpp-dev libjsoncpp-dev libxdg-basedir-dev
2018-06-12 08:14:57 +02:00
- dpkg -i mastodon-cpp.deb
- mkdir -p build && cd build
- cmake ..
- make VERBOSE=1
- make install DESTDIR=install
2018-06-13 00:56:02 +02:00
notify:
image: drillster/drone-email
host: cryptoparty-celle.de
secrets: [ email_username, email_password ]
from: drone@tzend.de
when:
status: [ changed, failure ]