Newer
Older
- 1.3
- 1.3.1
- 1.3.2
- 1.3.3
- 1.4
- 1.4.1
José Carlos Nieto
committed
- 1.4.2
- mv $PWD $GOPATH/src/upper.io/db
- cd $GOPATH/src/upper.io/db
- go get -v github.com/cznic/ql/ql # ql command line util.
- go get -v -t -d
- go get -v -t -d upper.io/db/mysql
- go get -v -t -d upper.io/db/sqlite
- go get -v -t -d upper.io/db/postgresql
- go get -v -t -d upper.io/db/mongo
- go get -v -t -d upper.io/db/ql
- go get -v github.com/jmoiron/sqlx
- (cd $GOPATH/src/github.com/jmoiron/sqlx && git pull -a && git checkout ptrs) # temporal fix
- (cd $GOPATH/src/github.com/jmoiron/sqlx && go build -a && go install)
- export TRAVIS_BUILD_DIR=$GOPATH/src/upper.io/db
José Carlos Nieto
committed
- mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
- (cd mysql/_dumps && make)
- (cd postgresql/_dumps && make)
- (cd sqlite/_dumps && make)
- (cd ql/_dumps && make)
- cd $GOPATH/src/upper.io/db
- go test upper.io/db/mysql -bench=.
- go test upper.io/db/sqlite -bench=.
- go test upper.io/db/ql -bench=.
- go test upper.io/db/mongo -bench=.
- go test -v