summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a3d9d81e373644c1f6293bf0ccd1fabfdf2443da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: cpp
cache: ccache
sudo: required
dist: trusty
before_install:
 - sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ wily main universe' -y
 - sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ xenial main' -y
 - |
   sudo sh -c '/bin/echo -e "Package: *\nPin: release n=wily\nPin-Priority: 1" > /etc/apt/preferences.d/wily'
   sudo sh -c '/bin/echo -e "Package: *\nPin: release n=xenial\nPin-Priority: 1" > /etc/apt/preferences.d/xenial'
 - sudo apt-get update -qq
install:
 - sudo apt-get -qq -y -t wily install gettext liblz4-dev python3-apt
 - sudo apt-get -qq -y -t xenial install cmake ninja-build
 - sudo ./prepare-release travis-ci
before_script:
 - ( mkdir build && cd build && cmake -G Ninja .. )
 - ninja -C build
script:
 - CTEST_OUTPUT_ON_FAILURE=1 ninja -C build test
 - DESTDIR=$PWD/rootdir chronic ninja -C build install
 - ./test/integration/run-tests -qq
 - sudo adduser --force-badname --system --home /nonexistent --no-create-home --quiet _apt || true
 - sudo ./test/integration/run-tests -qq