restic/.travis.yml

32 lines
706 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
2015-04-25 17:31:38 +00:00
os:
- linux
- osx
2015-03-14 14:37:12 +00:00
notifications:
irc:
channels:
- "chat.freenode.net#restic"
on_success: change
on_failure: change
install:
- go get github.com/mitchellh/gox
2015-05-06 18:30:43 +00:00
- gox -build-toolchain -os "linux darwin openbsd freebsd"
- 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-05-06 18:30:43 +00:00
- sh -c "cd cmd/restic && gox -verbose -os 'linux darwin openbsd freebsd' && ls -al"
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)"