2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-05 18:40:49 +00:00
restic/vendor/github.com/pkg/xattr/.travis.sh

18 lines
327 B
Bash
Raw Normal View History

#!/bin/sh -e
echo "Building for Linux..."
GOOS=linux go build
echo "Building for Darwin..."
GOOS=darwin go build
echo "Building for FreeBSD..."
GOOS=freebsd go build
2019-04-24 10:32:52 +00:00
echo "Building for Windows...(dummy)"
GOOS=windows go build
echo "Running tests..."
go vet
2019-01-27 20:07:57 +00:00
go test -v -race -coverprofile=coverage.txt -covermode=atomic