]> source.dussan.org Git - tigervnc.git/commitdiff
Add ubuntu-bionic to travis-ci builds
authorBrian P. Hinz <bphinz@users.sf.net>
Sat, 21 Dec 2019 22:59:08 +0000 (17:59 -0500)
committerBrian P. Hinz <bphinz@users.sf.net>
Sat, 21 Dec 2019 23:30:42 +0000 (18:30 -0500)
.travis.yml
.travis/bionic/Dockerfile [new file with mode: 0644]
.travis/bionic/build.sh [new file with mode: 0755]

index 141164f9b85fa7d26e3e4a02cae559306ca20518..36006fe9c48e677a2d538d2e833e52f258a3b4fe 100644 (file)
@@ -5,6 +5,7 @@ env:
   - DOCKER=centos6
   - DOCKER=centos7
   - DOCKER=xenial
+  - DOCKER=bionic
 
 matrix:
   include:
diff --git a/.travis/bionic/Dockerfile b/.travis/bionic/Dockerfile
new file mode 100644 (file)
index 0000000..71b0e87
--- /dev/null
@@ -0,0 +1,11 @@
+FROM ubuntu:bionic
+
+RUN apt-get update
+RUN apt-get -y install packaging-dev equivs
+
+RUN useradd -s /bin/bash -m deb
+RUN echo >> /etc/sudoers
+RUN echo "deb ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
+
+USER deb
+WORKDIR /home/deb
diff --git a/.travis/bionic/build.sh b/.travis/bionic/build.sh
new file mode 100755 (executable)
index 0000000..9243447
--- /dev/null
@@ -0,0 +1,54 @@
+#!/bin/bash
+
+set -e
+set -x
+
+## Basic variables
+
+CURDIR=$(dirname $(readlink -f $0))
+TOPDIR=$(git rev-parse --show-toplevel 2>/dev/null)
+
+DEBDIR=${TOPDIR}/contrib/packages/deb/ubuntu-bionic
+
+VERSION=$(grep '^set(VERSION ' ${TOPDIR}/CMakeLists.txt | sed 's@^set(VERSION \(.*\))@\1@')
+
+## Prepare the build directory
+
+rm -rf ${CURDIR}/build
+mkdir -p ${CURDIR}/build
+chmod a+w ${CURDIR}/build
+[ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled && chcon -Rt container_file_t ${CURDIR}/build
+
+## Copy over the source code
+
+(cd ${TOPDIR} && git archive --prefix tigervnc-${VERSION}/ HEAD) | xz > ${CURDIR}/build/tigervnc_${VERSION}.orig.tar.xz
+
+## Copy over the packaging files
+
+cp -r ${DEBDIR}/debian ${CURDIR}/build/debian
+
+chmod a+x ${CURDIR}/build/debian/rules
+
+# Assemble a fake changelog entry to get the correct version
+
+cat - > ${CURDIR}/build/debian/changelog << EOT
+tigervnc (${VERSION}-1ubuntu1) UNRELEASED; urgency=low
+
+  * Automated build for TigerVNC
+
+ -- Build bot <tigervncbot@tigervnc.org>  $(date -R)
+
+EOT
+cat ${DEBDIR}/debian/changelog >> ${CURDIR}/build/debian/changelog
+
+## Start the build
+
+docker run --volume ${CURDIR}/build:/home/deb/build --interactive --tty --rm tigervnc/${DOCKER} \
+       bash -c "
+       tar -C ~/build -axf ~/build/tigervnc_${VERSION}.orig.tar.xz &&
+       cp -a ~/build/debian ~/build/tigervnc-${VERSION}/debian &&
+       mk-build-deps ~/build/tigervnc-${VERSION}/debian/control &&
+       sudo dpkg --unpack ~/tigervnc-build-deps_*.deb &&
+       sudo apt-get -f install -y &&
+       cd ~/build/tigervnc-${VERSION} && dpkg-buildpackage
+       "