aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7ab11b93006ebc98fbc998885218c6cbc291294a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: c
compiler:
  - gcc
  - clang
env:
  - MAKE_VER=4.0
  - MAKE_VER=4.1
before_install:
  - sudo apt-get update -q
  - wget http://ftp.gnu.org/gnu/make/make-${MAKE_VER}.tar.bz2 -O - | bunzip2 | tar -xvC /tmp
install:
  - sudo apt-get install -y libpcre3-dev
  - pushd /tmp/make-${MAKE_VER} && ./configure && make && sudo make install ; popd
script: /usr/local/bin/make -k check