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
|
||||
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:
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
|
||||
brew install libsqlite3
|
||||
fi
|
Loading…
Reference in New Issue