Files
linuxkit/circle.yml
Ian Campbell 48f1dd042f Build for Darwin and Windows in CI
Signed-off-by: Ian Campbell <ian.campbell@docker.com>
2017-07-06 17:51:43 +01:00

14 lines
471 B
YAML

version: 2
executorType: machine
jobs:
build:
environment:
GOPATH: /home/circleci/.go_workspace
working_directory: $GOPATH/src/github.com/moby/tool
steps:
- checkout
- run: go get github.com/golang/lint/golint
- run: cd $GOPATH/src/github.com/moby/tool && make test
- run: cd $GOPATH/src/github.com/moby/tool && make clean && make GOOS=darwin
- run: cd $GOPATH/src/github.com/moby/tool && make clean && make GOOS=windows