forked from xcir/libvmod-parseform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
45 lines (37 loc) · 870 Bytes
/
.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
---
sudo: required
dist: xenial
language: c
addons:
apt:
packages:
- python-docutils
- python-sphinx
before_install:
- set -e
- wget $VARSNIH_TGZ
- tar -zxf *gz
- pushd varnish-*/
- ./autogen.sh
- ./configure --prefix=/usr
- make -sj32
- sudo make install
- popd
before_script:
- ./autogen.sh
- ./configure --prefix=/usr
- make -j4
script:
- make check -j4
env:
matrix:
- VARSNIH_TGZ=https://github.com/varnishcache/varnish-cache/archive/master.tar.gz
- VARSNIH_TGZ=https://varnish-cache.org/_downloads/varnish-6.4.0.tgz
- VARSNIH_TGZ=https://varnish-cache.org/_downloads/varnish-6.3.0.tgz
- VARSNIH_TGZ=https://varnish-cache.org/_downloads/varnish-6.2.1.tgz
compiler:
- clang
- gcc
matrix:
allow_failures:
- env: VARSNIH_TGZ=https://github.com/varnishcache/varnish-cache/archive/master.tar.gz