mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-24 07:28:27 +00:00
26 lines
581 B
YAML
26 lines
581 B
YAML
|
machine:
|
||
|
environment:
|
||
|
GOROOT: ${HOME}/go1.5
|
||
|
GOARM: 5
|
||
|
GO386: 387
|
||
|
PATH: ${HOME}/go1.5/bin:${PATH}
|
||
|
|
||
|
dependencies:
|
||
|
cache_directories:
|
||
|
- ~/go1.5
|
||
|
override:
|
||
|
# Make sure our desired go version is installed
|
||
|
- ./script/circle-installgo.sh
|
||
|
- go version
|
||
|
|
||
|
test:
|
||
|
override:
|
||
|
# First install latest versions of all dependencies
|
||
|
- go get -v -t -d ./...
|
||
|
# Build the binaries with those
|
||
|
- go build -v ./cmd/...
|
||
|
# And run the tests
|
||
|
- go test -v -short ./...
|
||
|
# Build all packages, using the vendored dependencies.
|
||
|
- ./build.sh all
|