-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.travis.yml
47 lines (39 loc) · 1.26 KB
/
.travis.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
sudo: required
dist: trusty
group: legacy
language: cpp
compiler:
- gcc
- clang
branches:
except:
- tmp
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq autotools-dev libkpathsea-dev libpotrace-dev libfreetype6-dev libgs-dev libz-dev texlive-base python-lxml
install:
- sudo apt-get install -qq g++-4.9
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 100
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "MlOXG2PegI8ck67gSCoY0w4hncbaJ0UG+5VUOmzZ4blJDrA2BLOnQg8n/D65ic1pzmrooUuZJJMmgWI+6F+pyZyXTOpDP50cX4i8WpcuHY/phYp9w2jdN61YgqoUIgWgxsAxBUV2Lf1ULZbWYwUoI9fLkTE6owFXZPFT5ZQnwWA="
addons:
coverity_scan:
project:
name: mgieseki/dvisvgm
description: "dvisvgm - A fast DVI to SVG converter"
version: 2.2.1
notification_email: [email protected]
build_command_prepend: "./configure; make clean"
build_command: "make -j"
branch_pattern: coverity_scan
script:
- uname -a
- ./autogen.sh
- ./configure
- make
- make -C src -t
- make check