mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
26 lines
500 B
YAML
26 lines
500 B
YAML
language: go
|
|
go:
|
|
- 1.3.3
|
|
- 1.4.2
|
|
- release
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
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 ./...
|
|
- ./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)"
|