Skip to content

Commit

Permalink
Travis (#2)
Browse files Browse the repository at this point in the history
* Add solc dep

* Add repo

* Add repo

* Add code coverage

* Make it clear this is pre-release

Signed-off-by: Peter Broadhurst <peter.broadhurst@kaleido.io>
  • Loading branch information
peterbroadhurst authored Jul 2, 2018
1 parent cac5598 commit 44ce24c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ ethconnect
ethconnect-go-win
ethconnect-go-tux
ethconnect-go-mac
coverage.txt
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
language: go

before_install:
- sudo add-apt-repository -y ppa:ethereum/ethereum
- sudo apt-get update
- sudo apt-get install -y solc
after_success:
- bash <(curl -s https://codecov.io/bash)
go:
- "1.10.x"

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ all: deps build test
build:
$(GOBUILD) -o $(BINARY_NAME) -v
test:
$(GOTEST) ./... -cover
$(GOTEST) ./... -cover -coverprofile=coverage.txt -covermode=atomic
clean:
$(GOCLEAN)
rm -f $(BINARY_NAME)
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# github.com/kaleido-io/ethconnect

![Coverage report](https://codecov.io/gh/kaleido-io/ethconnect/branch/master/graph/badge.svg)

> Currently pre-relesae - please check back soon for updates
Open Source component that is used as part of [Kaleido Connect](https://kaleido.io).

Provides an integration bridge into Ethereum permissioned chains, from simple
Expand Down

0 comments on commit 44ce24c

Please sign in to comment.