bitbucket-pipelines.yml

Wed, 07 Sep 2016 16:43:04 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Wed, 07 Sep 2016 16:43:04 -0500
changeset 38030
24a306f26d2c
child 38031
0641111da227
permissions
-rw-r--r--

add a bitbucket-pipelines.yml file to build and run unittests under debian stretch

# 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)

mercurial