Commit 40f42098 authored by gwenn's avatar gwenn

Go 1.6, I would prefer no to.

parent 15371c0d
language: go
sudo: false
go:
- 1.4
- 1.6
- tip
addons:
apt:
......@@ -15,4 +15,4 @@ install:
before_script:
- go get github.com/bmizerany/assert
script:
- go test -v -tags all github.com/gwenn/gosqlite
\ No newline at end of file
- GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
......@@ -13,6 +13,11 @@ There are two layers:
[1]: https://secure.travis-ci.org/gwenn/gosqlite.png
[2]: http://www.travis-ci.org/gwenn/gosqlite
### Caveat
With Go 1.6, this driver does not work anymore without `GODEBUG=cgocheck=0` (see [Cgo major change](https://golang.org/doc/go1.6#cgo)).
It seems that the solution is a global variable/lock (see [here](https://github.com/mattn/go-sqlite3/pull/268)).
"I would prefer not to" do this.
### Custom build
If your OS does not bundle SQLite3 development files (or old ones):
- download and copy SQLite3 files
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment