mirror of https://github.com/mattn/go-sqlite3.git
Install libsqlite3 using homebrew on OSX
This commit is contained in:
parent
81705299e2
commit
b1cb24388d
|
@ -1,9 +1,15 @@
|
||||||
|
sudo: required
|
||||||
|
dist: trusty
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
language: go
|
language: go
|
||||||
go:
|
go:
|
||||||
- 1.5
|
- 1.5
|
||||||
- 1.6
|
- 1.6
|
||||||
- tip
|
- tip
|
||||||
before_install:
|
before_install:
|
||||||
|
- ./.travis/install.sh
|
||||||
- go get github.com/mattn/goveralls
|
- go get github.com/mattn/goveralls
|
||||||
- go get golang.org/x/tools/cmd/cover
|
- go get golang.org/x/tools/cmd/cover
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
|
||||||
|
brew install libsqlite3
|
||||||
|
fi
|
Loading…
Reference in New Issue