Codebase list golang-github-pkg-xattr / 2a37e2e8-cdec-40d8-9f48-cd0ba800e642/upstream .travis.sh
2a37e2e8-cdec-40d8-9f48-cd0ba800e642/upstream

Tree @2a37e2e8-cdec-40d8-9f48-cd0ba800e642/upstream (Download .tar.gz)

.travis.sh @2a37e2e8-cdec-40d8-9f48-cd0ba800e642/upstreamraw · history · blame

#!/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