Skip to content

Commit

Permalink
Merge pull request #114 from alpacahq/feature/golang-1.11
Browse files Browse the repository at this point in the history
Go 1.11
  • Loading branch information
rocketbitz authored Aug 27, 2018
2 parents 006217b + ecc1946 commit c8b6b92
Show file tree
Hide file tree
Showing 13 changed files with 314 additions and 544 deletions.
19 changes: 8 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,30 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.11rc2

working_directory: /go/src/github.com/alpacahq/marketstore
working_directory: ~/github.com/alpacahq/marketstore
steps:
- checkout
- run: go get -u github.com/golang/dep/...
- run: make configure all plugins
- run: make vendor all plugins

test:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.11rc2

working_directory: /go/src/github.com/alpacahq/marketstore
working_directory: ~/github.com/alpacahq/marketstore
steps:
- checkout
- run: go get -u github.com/golang/dep/...
- run: make configure unittest
- run: make vendor unittest

deploy:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.11rc2

working_directory: /go/src/github.com/alpacahq/marketstore
working_directory: ~/github.com/alpacahq/marketstore
steps:
- checkout
- setup_remote_docker
- run: go get -u github.com/golang/dep/...
- run: DOCKER_TAG=$CIRCLE_TAG make configure push

workflows:
Expand Down
Loading

0 comments on commit c8b6b92

Please sign in to comment.