From 8c91751fbe1ea41fe9373bdbcd204ca8bd9d14a5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 21 Jun 2018 14:08:25 +0200 Subject: [PATCH] downgraded drone from buster to stretch --- .drone.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0586d6a..524e7ec 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,12 +5,15 @@ pipeline: source: https://schlomp.space/attachments/dbc2b2b0-86c9-4aee-ac99-9cb9e91a82ed destination: mastodon-cpp.deb build: - image: debian:buster-slim + image: debian:stretch-slim 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 build-essential cmake pkg-config - - apt-get install -qy libcurl4-openssl-dev libcurlpp-dev libjsoncpp-dev libxdg-basedir-dev + - apt-get install -qy libcurl4-openssl-dev libjsoncpp-dev libxdg-basedir-dev + - apt-get install -qy -t buster libcurlpp-dev - dpkg -i mastodon-cpp.deb - mkdir -p build && cd build - cmake ..