Install libsqlite3 using homebrew on OSX

This commit is contained in:
Zbigniew Mandziejewicz 2016-04-22 21:01:42 +08:00
parent 81705299e2
commit b1cb24388d
2 changed files with 11 additions and 0 deletions

View File

@ -1,9 +1,15 @@
sudo: required
dist: trusty
os:
- linux
- osx
language: go
go:
- 1.5
- 1.6
- tip
before_install:
- ./.travis/install.sh
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:

5
.travis/install.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
brew install libsqlite3
fi