mirror of https://bitbucket.org/ausocean/av.git
34 lines
721 B
YAML
34 lines
721 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
|
|
- image: circleci/golang:1.12
|
|
environment:
|
|
GO111MODULE: "on"
|
|
|
|
working_directory: /go/src/bitbucket.org/ausocean/av
|
|
|
|
environment:
|
|
TEST_RESULTS: /tmp/test-results
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- run: git clone --depth=1 https://bitbucket.org/ausocean/test.git ${GOPATH}/src/bitbucket.org/ausocean/test
|
|
|
|
- restore_cache:
|
|
keys:
|
|
- v1-pkg-cache
|
|
|
|
- run: go get -d -t -v ./...
|
|
|
|
- run: go build -v ./...
|
|
|
|
- run: go test -v ./...
|
|
|
|
- save_cache:
|
|
key: v1-pkg-cache
|
|
paths:
|
|
- "/go/pkg"
|