~titusx/nginx/module-fancyindex

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Adrián Pérez de Castro
  • Date: 2016-02-10 16:55:26 UTC
  • Revision ID: git-v1:80bd501bbfb61ba831160d1960826249ce1dbd0a
Travis-CI: Add configuration

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
language: c
 
2
 
 
3
compiler:
 
4
  - clang
 
5
  - gcc
 
6
 
 
7
env:
 
8
  # At least try stable and mainline versions
 
9
  - NGINX=1.9.11
 
10
  - NGINX=1.8.1
 
11
  # Also, the oldest supported version
 
12
  # TODO: Fails building because it won't find IOV_MAX from header.
 
13
  #- NGINX=0.7.69
 
14
 
 
15
sudo: false
 
16
 
 
17
addons:
 
18
  apt:
 
19
    packages:
 
20
      - libpcre3-dev
 
21
      - libssl-dev
 
22
 
 
23
cache: ccache
 
24
 
 
25
script: |
 
26
  wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
 
27
  cd nginx-${NGINX}
 
28
  ./configure --add-module=.. --with-http_addition_module
 
29
  make