2014-11-15 23:45:25 +00:00
|
|
|
box: wercker/golang
|
2014-11-16 10:12:55 +00:00
|
|
|
# Build definition
|
|
|
|
build:
|
|
|
|
# The steps that will be executed on build
|
|
|
|
steps:
|
|
|
|
# Sets the go workspace and places you package
|
|
|
|
# at the right place in the workspace tree
|
|
|
|
- setup-go-workspace
|
|
|
|
|
2015-02-15 13:48:21 +00:00
|
|
|
# Test go formatting
|
|
|
|
- script:
|
|
|
|
name: gofmt
|
|
|
|
code: |
|
|
|
|
gofmt -l *.go */*.go */*/*.go
|
|
|
|
test -z "$(gofmt -l *.go */*.go */*/*.go)"
|
|
|
|
|
2014-11-16 10:12:55 +00:00
|
|
|
# Gets the dependencies
|
|
|
|
- script:
|
|
|
|
name: go get
|
|
|
|
code: |
|
|
|
|
cd $WERCKER_SOURCE_DIR
|
|
|
|
go version
|
2015-01-14 20:36:33 +00:00
|
|
|
go get -v -t ./...
|
2014-11-16 10:12:55 +00:00
|
|
|
|
|
|
|
# Build the project
|
|
|
|
- script:
|
|
|
|
name: go build
|
|
|
|
code: |
|
|
|
|
go build ./...
|
|
|
|
|
|
|
|
# Test the project
|
|
|
|
- script:
|
|
|
|
name: go test
|
|
|
|
code: |
|
|
|
|
go test ./...
|
|
|
|
|
|
|
|
# run integration tests
|
|
|
|
- script:
|
|
|
|
name: integration test
|
|
|
|
code: |
|
2015-01-14 20:36:33 +00:00
|
|
|
./testsuite.sh
|