Skip to content

Commit

Permalink
Merge pull request #52 from TIBCOSoftware/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
torresashjian authored May 1, 2019
2 parents cd6673c + 20fe704 commit f964369
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,4 @@
- "1.11"
script:
- make depend
- make
notifications:
email:
recipients:
- [email protected]
#- [email protected]
#- [email protected]
on_success: never # default: change
on_failure: always # default: always
- make
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildtype: install
@$(SCRIPTS_PATH)/buildtype.sh

.PHONY: test_all
all: dovetail-tests hyperledger-fabric-tests corda-tests
test_all: dovetail-tests hyperledger-fabric-tests corda-tests

.PHONY: dovetail-tests
dovetail-tests:
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,22 @@ This allows definition of your smart contracts on a model driven approach and ab

## Installation

Install [Go version 1.11.x](https://golang.org/doc/install) and [set GOPATH environment variable](https://golang.org/doc/code.html#GOPATH). Clone this project, then install and test it as follows:
For step by step instructions on how to setup Project Dovetail™ cli environment, please go to the installation section on the [documentation page](https://tibcosoftware.github.io/dovetail/getting-started/getting-started-cli/)

## Build dovetail cli from source

Install [Go version 1.11.x](https://golang.org/doc/install) and [set GOPATH environment variable](https://golang.org/doc/code.html#GOPATH). Then install and test it as follows:

```
export PATH=${GOPATH}/bin:${PATH}
go get -u -d github.com/TIBCOSoftware/dovetail-cli
cd ${GOPATH}/src/github.com/TIBCOSoftware/dovetail-cli
make
```
If you see test errors, please refer the Troubleshooting or Support section below.

For step by step instructions on how to setup Project Dovetail™ environment, please go to the installation section on the [documentation page](https://tibcosoftware.github.io/dovetail/getting-started/getting-started-cli/)
If you want to just install the cli and not run any tests use "make install" command instead of "make".

If you see test errors, please refer the Troubleshooting or Support section below.

### Note on third party dependencies

Expand Down
6 changes: 6 additions & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

echo "Installing dovetail-cli..."
go get -u -d github.com/TIBCOSoftware/dovetail-cli
cd ${GOPATH}/src/github.com/TIBCOSoftware/dovetail-cli
make install

0 comments on commit f964369

Please sign in to comment.