pidgin/pidgin

Remove the old logger which means you can longer read old logs. This is fine since purple3 no longerg uses the share config directory as purple2 and in fact requires the ui to set it. This means old data won't be there.
# vi:et:ts=2 sw=2 sts=2
image: pidgin/builders:subproject-build
pipelines:
default:
- step:
script:
- set -ex
- meson -Ddoc=true -Dconsole-logging=true build-pipelines
- ninja -C build-pipelines
- ninja -C build-pipelines test
- "ninja -C build-pipelines $(ninja -C build-pipelines -t targets | grep -E '[a-z]+-doc:' | cut -d: -f1)"
branches:
release-2.x.y:
- step:
image: pidgin/release-builder:release-2.x.y
script:
- set -ex
- hg clone https://bitbucket.org/pidgin/libgnt -b release-2.x.y
- meson -Dprefix=/usr libgnt libgnt/build
- ninja -C libgnt/build install
- ldconfig
- ./autogen.sh --enable-debug
- make -s -j$(nproc)
- make -s -j$(nproc) check
- make distcheck