3b12a9293c
This should yield another 30-second speed up. Nobody looks at the output of those anyway. We might want bring back gofmt later and actually fail the build if source is not formatted.
25 lines
914 B
YAML
25 lines
914 B
YAML
language: go
|
|
go:
|
|
- 1.4.1
|
|
before_install:
|
|
- sudo add-apt-repository ppa:beineri/opt-qt54 -y
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -yqq libgmp3-dev libreadline6-dev qt54quickcontrols qt54webengine
|
|
install:
|
|
# - go get golang.org/x/tools/cmd/vet
|
|
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
|
- go get github.com/mattn/goveralls
|
|
before_script:
|
|
# - go vet ./...
|
|
# - go test -race ./...
|
|
script:
|
|
- ./gocoverage.sh
|
|
after_success:
|
|
- if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
|
|
env:
|
|
global:
|
|
- PKG_CONFIG_PATH=/opt/qt54/lib/pkgconfig
|
|
- LD_LIBRARY_PATH=/opt/qt54/lib
|
|
- secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
|
|
|