mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-08 23:18:19 -07:00
Merge pull request #131 from greut/versions
feat: running tests on more specific versions.
This commit is contained in:
commit
2ccb6aa8a7
1 changed files with 14 additions and 10 deletions
24
.travis.yml
24
.travis.yml
|
|
@ -9,17 +9,17 @@ go:
|
||||||
- tip
|
- tip
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- LIBVIPS=7.42
|
- LIBVIPS=7.42.3
|
||||||
- LIBVIPS=8.2
|
- LIBVIPS=8.2.3
|
||||||
- LIBVIPS=8.3
|
- LIBVIPS=8.3.3
|
||||||
- LIBVIPS=8.4
|
- LIBVIPS=8.4.5
|
||||||
- LIBVIPS=master
|
- LIBVIPS=master
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- env: LIBVIPS=7.42
|
- env: LIBVIPS=7.42.3
|
||||||
- env: LIBVIPS=8.2
|
- env: LIBVIPS=8.2.3
|
||||||
- env: LIBVIPS=8.3
|
- env: LIBVIPS=8.3.3
|
||||||
|
|
||||||
cache: apt
|
cache: apt
|
||||||
|
|
||||||
|
|
@ -42,9 +42,13 @@ addons:
|
||||||
|
|
||||||
# VIPS 8.3.3 requires Poppler 0.30 which is not released on Trusty.
|
# VIPS 8.3.3 requires Poppler 0.30 which is not released on Trusty.
|
||||||
before_install:
|
before_install:
|
||||||
- wget https://github.com/jcupitt/libvips/archive/$LIBVIPS.zip
|
- >
|
||||||
- unzip $LIBVIPS
|
test $LIBVIPS != "master" \
|
||||||
- cd libvips-$LIBVIPS
|
&& wget http://www.vips.ecs.soton.ac.uk/supported/${LIBVIPS%.*}/vips-${LIBVIPS}.tar.gz -O vips.tgz \
|
||||||
|
|| wget https://github.com/jcupitt/libvips/archive/${LIBVIPS}.tar.gz -O vips.tgz
|
||||||
|
- mkdir libvips
|
||||||
|
- tar xf vips.tgz -C libvips --strip-components 1
|
||||||
|
- cd libvips
|
||||||
- test -f autogen.sh && ./autogen.sh || ./bootstrap.sh
|
- test -f autogen.sh && ./autogen.sh || ./bootstrap.sh
|
||||||
- >
|
- >
|
||||||
CXXFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0
|
CXXFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue