-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
44 lines (44 loc) · 1.09 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
sudo: false
addons:
firefox: "49.0"
apt:
packages:
#texvc dependencies
- build-essential
- dvipng
- ocaml
- texlive-fonts-recommended
- texlive-lang-greek
- texlive-latex-recommended
#latexml dependencies according to http://dlmf.nist.gov/LaTeXML/get.html#SS2.SSS0.Px2
- libarchive-zip-perl
- libfile-which-perl
- libimage-size-perl
- libio-string-perl
- libjson-xs-perl
- libparse-recdescent-perl
- liburi-perl
- libuuid-tiny-perl
- libwww-perl
- libxml2
- libxml-libxml-perl
- libxslt1.1
- libxml-libxslt-perl
- texlive-latex-base
- imagemagick
- libimage-magick-perl
- latexml
language: node_js
node_js:
- "lts/*"
- "6"
- "8"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- cd ./tools/texvc && make && cd ../..
- cd ./tools/LaTeXML && perl Makefile.PL && make && make test
- export PERL5LIB=`pwd`/blib/lib
script: npm run-script coverage
after_success: npm run coveralls