1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-11 19:29:47 +08:00
golearn/.travis.yml
Pekka Enberg 45b91dad87 Install libatlas-base-dev for Blas package
The Go blas package requires libcblas to be present on the system.
Travis environments run Ubuntu Linux so we need to install
libatlas-base-dev.

Signed-off-by: Pekka Enberg <penberg@iki.fi>
2014-05-31 11:08:16 +03:00

13 lines
218 B
YAML

language: go
go:
- 1.1
- 1.2
- release
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
install:
- go get github.com/smartystreets/goconvey/convey
- go get -v ./...