Skip to content
This repository has been archived by the owner on Mar 30, 2018. It is now read-only.

Commit

Permalink
Fix CI errors when running chaincode in container
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancarrivick-ibm committed Jul 21, 2016
1 parent c6b51a5 commit d8fafa4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bddtests/docker-compose-1-devmode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ ccenv:
environment:
- CORE_CHAINCODE_ID_NAME=testCC
- CORE_PEER_ADDRESS=vp0:30303
command: bash -c "go install github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02 && $GOPATH/bin/chaincode_example02"
command: bash -c "GOBIN=/opt/gopath/bin go install github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02 && /opt/gopath/bin/chaincode_example02"
links:
- vp0
3 changes: 2 additions & 1 deletion scripts/provision/host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ apt-get install --yes libyaml-dev

apt-get install --yes python-setuptools
apt-get install --yes python-pip
pip install --upgrade pip
pip install behave
pip install nose

Expand All @@ -25,7 +26,7 @@ pip install -I flask==0.10.1 python-dateutil==2.2 pytz==2014.3 pyyaml==3.10 couc
# Python grpc package for behave tests
# Required to update six for grpcio
pip install --ignore-installed six
pip install 'grpcio==0.13.1'
pip install 'grpcio==0.15'

# install ruby and apiaryio
#apt-get install --yes ruby ruby-dev gcc
Expand Down

0 comments on commit d8fafa4

Please sign in to comment.