summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b18ea5c580f512320bd248a589f596a6a4678bda (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
25
26
27
28
29
30
31
32
33
34
language: c

sudo: false
dist: trusty

cache:
  directories:
    - download

addons:
  apt_packages:
    - libjpeg8-dev
    - libjbig-dev
    - liblzma-dev
    - zlib1g-dev

os:
  - linux
  - osx

env:
  matrix:
    - BUILD=autoconf
    - BUILD=cmake TOOL="Unix Makefiles" TYPE=Release
    - BUILD=cmake TOOL="Ninja" TYPE=Debug

matrix:
  fast_finish: true
  exclude:
    - os: linux
      env: BUILD=cmake TOOL="Ninja" TYPE=Debug NETACCESSOR=cfurl TRANSCODER=macosunicodeconverter

script:
  - sh ./build/travis-ci "$BUILD" "$TOOL" "$TYPE"