mirror of
https://github.com/octoleo/restic.git
synced 2024-12-04 02:48:21 +00:00
bff635bc5f
So, `dep` got an nice new feature to remove tests and non-go files from `vendor/`, and this brings the size of the vendor directory from ~300MiB down to ~20MiB. We don that now.
15 lines
240 B
Bash
Executable File
15 lines
240 B
Bash
Executable File
#!/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 "Running tests..."
|
|
go vet
|
|
go test -v -race -covermode=atomic
|