forked from ariefsuharsono/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (62 loc) · 1.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: go
sudo: required
dist: trusty
go:
- 1.9
- 1.8
- 1.7
- 1.6
- tip
env:
- LIBVIPS=7.42
- LIBVIPS=8.2
- LIBVIPS=8.3
- LIBVIPS=8.4
- LIBVIPS=8.5
- LIBVIPS=master
matrix:
allow_failures:
- env: LIBVIPS=7.42
- env: LIBVIPS=8.2
- env: LIBVIPS=8.3
cache: apt
addons:
apt:
packages:
- gobject-introspection
- gtk-doc-tools
- libcfitsio3-dev
- libfftw3-dev
- libgif-dev
- libgs-dev
- libgsf-1-dev
- libmatio-dev
- libopenslide-dev
- liborc-0.4-dev
- libpango1.0-dev
- libpoppler-glib-dev
- libwebp-dev
before_install:
- wget https://github.com/jcupitt/libvips/archive/$LIBVIPS.zip
- unzip $LIBVIPS
- cd libvips-$LIBVIPS
- test -f autogen.sh && ./autogen.sh || ./bootstrap.sh
- >
CXXFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0
./configure
--disable-debug
--disable-dependency-tracking
--disable-introspection
--disable-static
--enable-gtk-doc-html=no
--enable-gtk-doc=no
--enable-pyvips8=no
--without-orc
--without-python
$1
- make
- sudo make install
- sudo ldconfig
script:
- cd ..
- go test -v -race -covermode=atomic