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

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>
13 lines
218 B
YAML
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 ./...
|