# HG changeset patch # User Gary Kramlich # Date 1473284584 18000 # Node ID 24a306f26d2c930150ace8c64250a4f2db2286d1 # Parent c21651e4f58e7daa1a877b02bdcb6c2753ef5502 add a bitbucket-pipelines.yml file to build and run unittests under debian stretch diff -r c21651e4f58e -r 24a306f26d2c bitbucket-pipelines.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bitbucket-pipelines.yml Wed Sep 07 16:43:04 2016 -0500 @@ -0,0 +1,14 @@ +# vi:et:ts=2 sw=2 sts=2 +image: pidgin/builder-debian:stretch +pipelines: + default: + - step: + script: + - set -ex + - wget -O - "https://packagecloud.io/pidgin/experimental/gpgkey" | apt-key add - + - echo "deb https://packagecloud.io/pidgin/experimental/debian/ stretch main" > /etc/apt/sources.list.d/gplugin.list + - apt-get update + - apt-get install -y libgplugin-dev + - ./autogen.sh --disable-kwallet --disable-meanwhile --enable-debug --disable-avahi --enable-gtk-doc + - make check -s -j$(cat /proc/cpuinfo | egrep "^processor\s+:" | wc -l) +