mastorss/.drone.yml

75 lines
2.9 KiB
YAML
Raw Normal View History

2018-06-13 03:11:15 +02:00
pipeline:
download:
image: plugins/download
2018-06-19 09:35:21 +02:00
pull: true
source: https://schlomp.space/attachments/713cd43b-8208-4e37-9fad-740daf7bdfa9
2018-06-13 03:11:15 +02:00
destination: mastodon-cpp.deb
2018-08-26 20:12:39 +02:00
gcc8:
image: gcc:8
2018-08-15 14:38:42 +02:00
pull: true
commands:
- echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
2018-08-26 20:12:39 +02:00
- echo "APT::Default-Release \"stretch\";" >> /etc/apt/apt.conf.d/00default_release
2018-08-15 14:38:42 +02:00
- apt-get update -q
2018-08-26 20:12:39 +02:00
- apt-get install -qy cmake libcurl4-openssl-dev libjsoncpp-dev libboost-all-dev
2018-08-15 14:38:42 +02:00
- apt-get install -qy -t buster libcurlpp-dev
- dpkg -i mastodon-cpp.deb
2018-08-26 20:12:39 +02:00
- rm -rf build && mkdir -p build && cd build
2018-08-15 14:38:42 +02:00
- cmake ..
- make VERBOSE=1
- make install DESTDIR=install
gcc7:
image: gcc:7
pull: true
commands:
- echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
- echo "APT::Default-Release \"stretch\";" >> /etc/apt/apt.conf.d/00default_release
- apt-get update -q
- apt-get install -qy cmake libcurl4-openssl-dev libjsoncpp-dev libboost-all-dev
- apt-get install -qy -t buster libcurlpp-dev
- dpkg -i mastodon-cpp.deb
2018-08-26 20:12:39 +02:00
- rm -rf build && mkdir -p build && cd build
2018-08-15 14:38:42 +02:00
- cmake ..
- make VERBOSE=1
- make install DESTDIR=install
2018-08-26 20:12:39 +02:00
gcc6:
image: gcc:6
2018-06-13 03:11:15 +02:00
pull: true
commands:
2018-08-26 20:12:39 +02:00
- echo "deb http://deb.debian.org/debian jessie-backports main" >> /etc/apt/sources.list.d/backports.list
- echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
2018-08-26 20:12:39 +02:00
- echo "APT::Default-Release \"jessie\";" >> /etc/apt/apt.conf.d/00default_release
2018-06-13 03:11:15 +02:00
- apt-get update -q
2018-08-26 20:12:39 +02:00
- apt-get install -qy libcurl4-openssl-dev libboost-all-dev
- apt-get install -qy -t jessie-backports cmake libjsoncpp-dev
- apt-get install -qy -t buster libcurlpp-dev
2018-06-13 03:11:15 +02:00
- dpkg -i mastodon-cpp.deb
2018-08-26 20:12:39 +02:00
- rm -rf build && mkdir -p build && cd build
2018-06-13 03:11:15 +02:00
- cmake ..
- make VERBOSE=1
- make install DESTDIR=install
2018-08-26 20:12:39 +02:00
# gcc5:
# image: gcc:5
# pull: true
# commands:
# - echo "deb http://deb.debian.org/debian jessie-backports main" >> /etc/apt/sources.list.d/backports.list
# - echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
# - echo "APT::Default-Release \"jessie\";" >> /etc/apt/apt.conf.d/00default_release
# - apt-get update -q
# - apt-get install -qy libcurl4-openssl-dev libboost-all-dev
# - apt-get install -qy -t jessie-backports cmake libjsoncpp-dev
# - apt-get install -qy -t buster libcurlpp-dev
# - dpkg -i mastodon-cpp.deb
# - rm -rf build && mkdir -p build && cd build
# - cmake ..
# - make VERBOSE=1
# - make install DESTDIR=install
2018-06-13 03:11:15 +02:00
notify:
image: drillster/drone-email
2018-06-19 09:35:21 +02:00
pull: true
2018-06-13 03:11:15 +02:00
host: cryptoparty-celle.de
secrets: [ email_username, email_password ]
from: drone@tzend.de
when:
status: [ changed, failure ]