bitbucket-pipelines.yml

Thu, 24 May 2018 15:12:34 -0500

author
Mike Ruprecht <cmaiku@gmail.com>
date
Thu, 24 May 2018 15:12:34 -0500
changeset 39065
3997b9da75e8
parent 38929
159404505264
child 39202
58d576d57484
permissions
-rw-r--r--

jabber: Fix assignment from incompatible pointer type warning

This patch removes an unneeded cast from a variable which was
causing an "assignment from incompatible pointer type" warning.

# 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