1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00
restic/.travis.yml

22 lines
477 B
YAML
Raw Normal View History

2015-03-14 15:38:59 +01:00
language: go
go:
2015-03-14 15:07:29 +01:00
- 1.3.3
- 1.4.2
- release
2015-03-14 15:37:12 +01:00
notifications:
irc: "chat.freenode.net#restic"
install:
- go get -v -t ./...
script:
- go build -ldflags "-s" ./...
2015-03-22 13:09:14 +01:00
- go build -ldflags "-s" -o restic ./cmd/restic
2015-03-22 13:26:41 +01:00
- "stat --printf='binary size: %s' restic"
2015-03-28 15:51:08 +01:00
- go test -v ./...
- ./testsuite.sh
- sh -c "cd backend && go test -v -test.sftppath /usr/lib/openssh/sftp-server ./..."
- gofmt -l *.go */*.go */*/*.go
- test -z "$(gofmt -l *.go */*.go */*/*.go)"