diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-06 07:23:22 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-06 07:23:22 +0800 |
commit | b58b6b9bac156035d416b5c837b49baa769b2db3 (patch) | |
tree | 021c17b47db6a634cfec3b5d3cf006f209c25613 /.travis.yml | |
parent | f3ac378ca4f670a6504d5138278bb33104eade0a (diff) | |
download | go-tangerine-b58b6b9bac156035d416b5c837b49baa769b2db3.tar.gz go-tangerine-b58b6b9bac156035d416b5c837b49baa769b2db3.tar.zst go-tangerine-b58b6b9bac156035d416b5c837b49baa769b2db3.zip |
Use after_success build step
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1a7e69ecb..f51f2cfbd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,9 @@ before_script: # - go vet ./... # - go test -race ./... script: - - ./gocoverage.sh && if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi + - ./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 |