2014-11-16 03:36:30 +02:00
|
|
|
language: go
|
|
|
|
go:
|
2015-02-06 00:27:54 +02:00
|
|
|
- 1.4.1
|
2014-11-16 02:22:01 +02:00
|
|
|
before_install:
|
2015-01-31 01:24:51 +02:00
|
|
|
- sudo add-apt-repository ppa:beineri/opt-qt54 -y
|
2014-11-16 02:22:01 +02:00
|
|
|
- sudo apt-get update -qq
|
2015-01-31 01:24:51 +02:00
|
|
|
- sudo apt-get install -yqq libgmp3-dev libreadline6-dev qt54quickcontrols qt54webengine
|
2014-11-15 04:58:09 +02:00
|
|
|
install:
|
|
|
|
- go get code.google.com/p/go.tools/cmd/goimports
|
|
|
|
- go get github.com/golang/lint/golint
|
2014-12-21 19:18:43 +02:00
|
|
|
# - go get golang.org/x/tools/cmd/vet
|
2014-12-21 20:05:59 +02:00
|
|
|
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
2014-11-16 16:34:28 +02:00
|
|
|
- go get github.com/mattn/goveralls
|
2015-02-06 02:11:31 +02:00
|
|
|
- go get gopkg.in/check.v1
|
2015-02-06 01:49:44 +02:00
|
|
|
- DEPS=$(go list -f '{{.Imports}}' ./... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$DEPS" ]; then go get -d -v $DEPS; fi
|
2014-11-16 03:45:05 +02:00
|
|
|
before_script:
|
|
|
|
- gofmt -l -w .
|
|
|
|
- goimports -l -w .
|
2014-11-17 18:21:19 +02:00
|
|
|
- golint .
|
2014-11-17 18:53:24 +02:00
|
|
|
# - go vet ./...
|
2014-11-15 06:23:31 +02:00
|
|
|
# - go test -race ./...
|
2014-11-16 03:45:05 +02:00
|
|
|
script:
|
2015-02-06 01:23:22 +02:00
|
|
|
- ./gocoverage.sh
|
|
|
|
after_success:
|
|
|
|
- if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
|
2014-11-16 16:34:28 +02:00
|
|
|
env:
|
2015-01-31 01:24:51 +02:00
|
|
|
global:
|
|
|
|
- PKG_CONFIG_PATH=/opt/qt54/lib/pkgconfig
|
|
|
|
- LD_LIBRARY_PATH=/opt/qt54/lib
|
|
|
|
- secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
|
2014-11-16 16:34:28 +02:00
|
|
|
|