Merge pull request #144 from greut/go18

Enabled go 1.8 builds.
master
Tomás Aparicio 9 years ago committed by GitHub
commit 9fbee3aff7

@ -1,11 +1,12 @@
language: go language: go
sudo: required
dist: trusty dist: trusty
sudo: false
go: go:
- 1.6 - 1.6
- 1.7 - 1.7
- 1.8
- tip - tip
env: env:
@ -21,7 +22,10 @@ matrix:
- env: LIBVIPS=8.2.3 - env: LIBVIPS=8.2.3
- env: LIBVIPS=8.3.3 - env: LIBVIPS=8.3.3
cache: apt cache:
apt:
directories:
- $HOME/libvips
addons: addons:
apt: apt:
@ -62,11 +66,15 @@ before_install:
--enable-pyvips8=no --enable-pyvips8=no
--without-orc --without-orc
--without-python --without-python
--prefix=$HOME/libvips
$1 $1
- make - make
- sudo make install - make install
- sudo ldconfig
- cd .. - cd ..
- export PATH=$PATH:$HOME/libvips/bin
- export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/libvips/lib/pkgconfig
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/libvips/lib
- vips --vips-version
before_script: before_script:
- go get -u github.com/golang/lint/golint - go get -u github.com/golang/lint/golint

Loading…
Cancel
Save