1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-11 19:29:47 +08:00
golearn/.travis.yml
Richard Townsend 929d7d40ac travis: drop support for go 1.2
gonum needs sync.Pool which go 1.2 doesn't have (according to the Travis
log anyway).
2015-09-13 11:46:22 +01:00

15 lines
546 B
YAML

language: go
go:
- 1.3
- 1.4
- release
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
- cd /tmp && wget http://www.csie.ntu.edu.tw/~cjlin/liblinear/oldfiles/liblinear-1.94.tar.gz && tar xf liblinear-1.94.tar.gz && cd liblinear-1.94 && make lib && sudo install -vm644 linear.h /usr/include && sudo install -vm755 liblinear.so.1 /usr/lib && sudo ln -sfv liblinear.so.1 /usr/lib/liblinear.so
- cd $TRAVIS_BUILD_DIR
install:
- go get github.com/smartystreets/goconvey/convey
- go get -v ./...