mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
23358bc55d
* Improve get last commit using git log --name-status git log --name-status -c provides information about the diff between a commit and its parents. Using this and adjusting the algorithm to use the first change to a path allows for a much faster generation of commit info. There is a subtle change in the results generated but this will cause the results to more closely match those from elsewhere. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: Lauris BH <lauris@nix.lv>
23 lines
719 B
YAML
Vendored
23 lines
719 B
YAML
Vendored
language: go
|
|
go:
|
|
- tip
|
|
before_install:
|
|
- go get -u golang.org/x/lint/golint
|
|
- go get github.com/axw/gocov/gocov
|
|
- go get github.com/mattn/goveralls
|
|
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover;
|
|
fi
|
|
script:
|
|
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || $HOME/gopath/bin/goveralls -service=travis-ci
|
|
-repotoken $COVERALLS_TOKEN'
|
|
- "$HOME/gopath/bin/golint ./..."
|
|
- go vet
|
|
- go test -bench=.* -v ./...
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|
|
env:
|
|
global:
|
|
secure: gpKsimMN5YScLnbcoWvJPw8VL+qCpZgnC4i8mFn/lRX5Ta9FhDMROQre0Ko4bU9RX/u/IBL1fO/IyaVtVWQ0fhsDi+ovrh3LgzewwZBgz7FGiyFpagvf91Jwq5Yus15QQZ8MebrQ41H1YiWMdLOHlZdN6gNb0cswg3w4MRjbGb4=
|