From d70bbd3f5799818ed3dfc83be9e62cd99978c345 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 4 Aug 2019 21:54:16 +0200 Subject: [PATCH] Ficed CI recipe. For some reason stretch has to be explicitly specified if stretch-backports are added? --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 06cb258..c49a452 100644 --- a/.drone.yml +++ b/.drone.yml @@ -130,8 +130,8 @@ steps: - echo "deb http://deb.debian.org/debian stretch-backports main" >> /etc/apt/sources.list.d/stretch.list - apt-get update -q - apt-get install -qy -t stretch-backports clang-6.0 - - apt-get install -qy cmake pkg-config - - apt-get install -qy libpoco-dev libxdg-basedir-dev libvsqlitepp-dev libboost-system-dev libboost-filesystem-dev libicu-dev asciidoc catch + - apt-get install -qy -t stretch cmake pkg-config + - apt-get install -qy -t stretch libpoco-dev libxdg-basedir-dev libvsqlitepp-dev libboost-system-dev libboost-filesystem-dev libicu-dev asciidoc catch - rm -rf build && mkdir -p build && cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr -DWITH_MOZILLA=YES .. - make VERBOSE=1