2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 19:40:49 +00:00
restic/.travis.yml

22 lines
477 B
YAML
Raw Normal View History

2015-03-14 14:38:59 +00:00
language: go
go:
2015-03-14 14:07:29 +00:00
- 1.3.3
- 1.4.2
- release
2015-03-14 14:37:12 +00:00
notifications:
irc: "chat.freenode.net#restic"
install:
- go get -v -t ./...
script:
- go build -ldflags "-s" ./...
2015-03-22 12:09:14 +00:00
- go build -ldflags "-s" -o restic ./cmd/restic
2015-03-22 12:26:41 +00:00
- "stat --printf='binary size: %s' restic"
2015-03-28 14:51:08 +00: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)"