CI: Dropped g++-6, was based on jessie, didn't work with libcurlpp-dev from sid
the build failed Details

This commit is contained in:
tastytea 2018-10-08 18:53:48 +02:00
parent 38390274ae
commit 497cab1122
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 24 deletions

View File

@ -41,30 +41,8 @@ pipeline:
- make package
- cmake -DWITH_DEB=OFF -DWITH_RPM=ON ..
- make package
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 sid main" >> /etc/apt/sources.list.d/sid.list
- echo "APT::Default-Release \"jessie\";" >> /etc/apt/apt.conf.d/00default_release
- apt-get update -q
- apt-get install -qy -t jessie-backports cmake libjsoncpp-dev
- apt-get install -qy libcurl4-openssl-dev
- apt-get install -qy -t sid libcurlpp-dev
- apt-get install -qy rpm file
- rm -rf build && mkdir -p build && cd build
- cmake -DWITH_EXAMPLES=ON -DWITH_TESTS=ON ..
- make VERBOSE=1
- make install DESTDIR=install
- ctest ..
- make package
- cmake -DWITH_DEB=ON ..
- make package
- cmake -DWITH_DEB=OFF -DWITH_RPM=ON ..
- make package
prepare_release:
image: gcc:6
image: gcc:7
pull: true
when:
event: tag

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.6)
project (mastodon-cpp
VERSION 0.18.8
VERSION 0.18.9
LANGUAGES CXX
)