1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-23 08:16:36 +00:00
restic/.travis.yml
Alexander Neumann 2c136381c2 Fix travis test
2015-03-28 15:51:08 +01:00

21 lines
469 B
YAML

language: go
go:
- 1.3.3
- 1.4.2
- release
notifications:
irc: "chat.freenode.net#restic"
install:
- go get -v -t ./...
script:
- go build -ldflags "-s" ./...
- go build -ldflags "-s" -o restic ./cmd/restic
- "stat --printf='binary size: %s' restic"
- go test -v ./...
- cd backend && go test -v -test.sftppath /usr/lib/openssh/sftp-server ./...
- ./testsuite.sh
- gofmt -l *.go */*.go */*/*.go
- test -z "$(gofmt -l *.go */*.go */*/*.go)"