Skip to content

Commit

Permalink
circleci 2.0 (cosmos#134)
Browse files Browse the repository at this point in the history
* circleci 2.0
  • Loading branch information
liamsi authored Jun 14, 2018
1 parent 8e27322 commit 41369d7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 21 deletions.
25 changes: 25 additions & 0 deletions .circleci/circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2

jobs:
build:
working_directory: /go/src/github.com/tendermint/go-crypto
docker:
- image: circleci/golang:1.10.0
environment:
GOBIN: /tmp/workspace/bin
steps:
- run: mkdir -p /tmp/workspace/bin
- run: mkdir -p /tmp/workspace/profiles
- checkout
- restore_cache:
keys:
- v1-dep-{{ .Branch }}
- run:
name: test
command: |
go version
cd $PROJECT_PATH && make get_tools && make all
- save_cache:
key: v1-dep-{{ .Branch }}
paths:
- /go/pkg
21 changes: 0 additions & 21 deletions circle.yml

This file was deleted.

0 comments on commit 41369d7

Please sign in to comment.