qulogic/talkatu

The history buffer was defaulting to a normal GtkTextTagTable which was breaking stuff. This wasn't noticed before as a TalkatuTagTable is usually set up via glade.
environment:
- PACKAGECLOUD_REPO=experimental
- ARCH=amd64
- BUILD_NUMBER
- DOCS_VERSION=latest
tasks:
import:
type: docker/import
files: .:.
login:
type: docker/login
username: ${DOCKERHUB_USERNAME}
password: ${DOCKERHUB_PASSWORD}
server: docker.io
logout:
type: docker/logout
server: docker.io
clean:
type: convey/clean
files:
- debian-buster-amd64
- fedora-29-amd64
- fedora-30-amd64
- scanbuild
- valgrind
build:
type: docker/run
image: talkatu/builders:${DISTRO}-${VERSION}-${ARCH}
export:
type: docker/export
files: ${DISTRO}-${VERSION}-${ARCH}
build-target:
type: docker/run
image: talkatu/builders:${TARGET}
export-target:
type: docker/export
files: ${TARGET}
scanbuild:
type: docker/run
image: talkatu/builders:scanbuild
scanbuild-export:
type: docker/export
files: scanbuild
pvs-studio:
type: docker/run
image: talkatu/builders:pvs-studio
script:
- set -x
- cd ${CONVEY_WORKSPACE}
- meson build-pvs-studio
- cd build-pvs-studio
- ninja -t compdb
docs-build:
type: docker/run
image: talkatu/builders:debian-buster-amd64
script:
- cd ${CONVEY_WORKSPACE}
- meson build-docs
- ninja -C build-docs talkatu-doc
docs-build-image:
type: docker/build
dockerfile: talkatu/reference/Dockerfile
tag: talkatu/docs:${DOCS_VERSION}
files:
- build-docs/talkatu/reference/html:.
docs-publish-image:
type: docker/push
image: talkatu/docs:${DOCS_VERSION}
package-cloud:
type: docker/run
image: rwgrim/package_cloud:latest
environment:
- PACKAGECLOUD_TOKEN
command: push --yes --verbose pidgin/${PACKAGECLOUD_REPO}/${DISTRO}/${VERSION} ${PATTERN}
workdir: ${CONVEY_WORKSPACE}/${DISTRO}-${VERSION}-${ARCH}
publish-deb:
type: convey/extend
task: package-cloud
environment:
- PATTERN=debs/*.deb
publish-debsrc:
type: convey/extend
task: package-cloud
environment:
- PATTERN=debs/*.dsc
publish-rpm:
type: convey/extend
task: package-cloud
environment:
- PATTERN=x86_64/*.rpm
import-artifacts:
type: docker/import
files:
- ${DISTRO}-${VERSION}-${ARCH}
plans:
debian:
environment:
- DISTRO=debian
- VERSION=buster
stages:
- tasks:
- import
- build
- export
docs:
stages:
- tasks:
- import
- docs-build
- docs-build-image
ci-docs:
stages:
- name: prep
tasks:
- login
- name: build
tasks:
- import
- docs-build
- docs-build-image
- docs-publish-image
- name: final
run: always
tasks:
- logout
fedora:
environment:
- DISTRO=fedora
stages:
- name: 29
environment:
- VERSION=29
tasks: [import, build, export]
- name: 30
environment:
- VERSION=30
tasks: [import, build, export]
pvs-studio:
environment:
- DISTRO=debian
- VERSION=pvs-studio
stages:
- tasks: [import, pvs-studio]
scanbuild:
environment:
- DISTRO=debian
- VERSION=scanbuild
stages:
- tasks: [import, scanbuild, scanbuild-export]
valgrind:
environment: [TARGET=valgrind]
stages:
- tasks: [import, build-target, export-target]
publish:
stages:
- name: publish-debian
environment:
- DISTRO=debian
- VERSION=buster
tasks:
- import-artifacts
- publish-deb
- publish-debsrc
- name: publish-fedora-29
environment:
- DISTRO=fedora
- VERSION=29
tasks:
- import-artifacts
- publish-rpm
- name: publish-fedora-30
environment:
- DISTRO=fedora
- VERSION=30
tasks:
- import-artifacts
- publish-rpm
clean:
stages:
- tasks: clean
meta-plans:
default:
plans:
- scanbuild
- debian
- fedora