Browse Source

Build Ubuntu 14.04 (Trusty) packages in Travis

tags/v1.9.90
Pierre Ossman 5 years ago
parent
commit
dfccb170e6
3 changed files with 77 additions and 0 deletions
  1. 1
    0
      .travis.yml
  2. 11
    0
      .travis/trusty/Dockerfile
  3. 65
    0
      .travis/trusty/build.sh

+ 1
- 0
.travis.yml View File

@@ -3,6 +3,7 @@ language: minimal
env:
- DOCKER=centos6
- DOCKER=centos7
- DOCKER=trusty
- DOCKER=xenial

matrix:

+ 11
- 0
.travis/trusty/Dockerfile View File

@@ -0,0 +1,11 @@
FROM ubuntu:trusty

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

+ 65
- 0
.travis/trusty/build.sh View File

@@ -0,0 +1,65 @@
#!/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-trusty

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}.tar.xz

# Extra dependencies built because the distribution lacks what we need

curl -L -o ${CURDIR}/build/fltk-1.3.4-2-source.tar.gz https://www.fltk.org/pub/fltk/1.3.4/fltk-1.3.4-2-source.tar.gz

# Bundle up everything

tar -C ${CURDIR}/build -axf ${CURDIR}/build/tigervnc-${VERSION}.tar.xz
tar -C ${CURDIR}/build/tigervnc-${VERSION} -axf ${CURDIR}/build/fltk-1.3.4-2-source.tar.gz
tar -C ${CURDIR}/build -acf ${CURDIR}/build/tigervnc_${VERSION}.orig.tar.xz tigervnc-${VERSION}
rm -rf ${CURDIR}/build/tigervnc-${VERSION}

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

Loading…
Cancel
Save