blob: 13e34d746d335b447d0b921b2f9112486b5a13e8 (
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
|
before_install:
- sudo apt-get -y update
- sudo apt-get -y install libicu-dev libmozjs185-dev pkg-config help2man
- sudo apt-get -y install libtool automake autoconf autoconf-archive
- sudo apt-get -y install texlive-latex-base texlive-latex-recommended
- sudo apt-get -y install texlive-latex-extra texlive-fonts-recommended texinfo
- sudo apt-get -y install python-pygments python-docutils python-sphinx
before_script: ./bootstrap && ./configure
script:
- rm -f erlang-*.tar.bz2
- make distcheck
- cd src/fauxton
- npm install
- grunt test
language: erlang
otp_release:
- 19.0
- 18.3
- 17.0
- R16B03-1
- R15B03
- R14B04
matrix:
allow_failures:
- otp_release: R14B04
|