mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-11 19:29:47 +08:00

tip seems to always fail at the moment due to a problem with the unit testing framework. Disabling tip for now until the problem is resolved. https://github.com/smartystreets/goconvey/issues/476
19 lines
610 B
YAML
19 lines
610 B
YAML
language: go
|
|
go:
|
|
- 1.4
|
|
- 1.5
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
env:
|
|
# Temporary workaround for go 1.6
|
|
- GODEBUG=cgocheck=0
|
|
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 ./...
|