CI: Changed dependencies: libcurlpp-dev is not in buster anymore, but in sid
the build failed Details

This commit is contained in:
tastytea 2018-10-08 19:22:27 +02:00
parent 619c2d9863
commit 278a574f80
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 36 deletions

View File

@ -8,11 +8,11 @@ pipeline:
image: gcc:8
pull: true
commands:
- echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
- echo "deb http://deb.debian.org/debian sid main" >> /etc/apt/sources.list.d/sid.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
- apt-get install -qy -t sid libcurlpp-dev
- dpkg -i mastodon-cpp.deb
- rm -rf build && mkdir -p build && cd build
- cmake ..
@ -22,48 +22,16 @@ pipeline:
image: gcc:7
pull: true
commands:
- echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list.d/buster.list
- echo "deb http://deb.debian.org/debian sid main" >> /etc/apt/sources.list.d/sid.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
- apt-get install -qy -t sid libcurlpp-dev
- dpkg -i mastodon-cpp.deb
- rm -rf build && mkdir -p build && cd build
- cmake ..
- make VERBOSE=1
- make install DESTDIR=install
gcc6:
image: gcc:6
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
# 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
notify:
image: drillster/drone-email
pull: true