You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
601 B

  1. #! /bin/bash
  2. set -eu
  3. # grab glide for dependency mgmt
  4. go get github.com/Masterminds/glide
  5. # grab network monitor, install mintnet, netmon
  6. # these might err
  7. echo "... fetching repos. ignore go get errors"
  8. set +e
  9. go get github.com/tendermint/network_testing
  10. go get github.com/tendermint/mintnet
  11. go get github.com/tendermint/netmon
  12. set -e
  13. # install vendored deps
  14. echo "GOPATH $GOPATH"
  15. cd $GOPATH/src/github.com/tendermint/mintnet
  16. echo "... install mintnet dir $(pwd)"
  17. glide install
  18. go install
  19. cd $GOPATH/src/github.com/tendermint/netmon
  20. echo "... install netmon dir $(pwd)"
  21. glide install
  22. go install