2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-02 09:58:25 +00:00
restic/vendor/github.com/pkg/xattr/.travis.sh
2019-04-24 15:17:48 +02:00

18 lines
327 B
Bash

#!/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
echo "Building for Windows...(dummy)"
GOOS=windows go build
echo "Running tests..."
go vet
go test -v -race -coverprofile=coverage.txt -covermode=atomic