bitbucket-pipelines.yml

Wed, 02 May 2018 16:50:28 -0500

author
Mike Ruprecht <cmaiku@gmail.com>
date
Wed, 02 May 2018 16:50:28 -0500
changeset 39007
76bcdc258fb2
parent 38929
159404505264
child 39202
58d576d57484
permissions
-rw-r--r--

gtkutils: Port pidgin_dialog_add_button() to only optionally use GtkStock

GtkStock and friends are deprecated. pidgin_dialog_add_button()
internally creates stock buttons. This patch modifies the behavior
to only create stock buttons if the label passed to the function
is a stock identifier.

# vi:et:ts=2 sw=2 sts=2
image: pidgin/builder-debian:buster
pipelines:
  default:
    - step:
        script:
          - set -ex
          - meson -Dsilc=false -Ddoc=true -Ddebug=true build
          - ninja -C build
          - ninja -C build test
  branches:
    release-2.x.y:
      - step:
          image: pidgin/release-builder:release-2.x.y
          script:
            - set -ex
            - ./autogen.sh --enable-debug
            - make -s -j$(nproc)
            - make -s -j$(nproc) check
            - make distcheck

mercurial