Browse Source

test/net: use MACH_PREFIX

pull/242/head
Ethan Buchman 8 years ago
parent
commit
45ff05d47d
2 changed files with 7 additions and 1 deletions
  1. +1
    -0
      circle.yml
  2. +6
    -1
      test/net/test.sh

+ 1
- 0
circle.yml View File

@ -1,5 +1,6 @@
machine:
environment:
MACH_PREFIX: tendermint-test-mach
GOPATH: /home/ubuntu/.go_workspace
REPO: $GOPATH/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
DOCKER_VERSION: 1.10.0


+ 6
- 1
test/net/test.sh View File

@ -6,10 +6,15 @@ VALSETSIZE=4
BLOCKSIZE=8092
TX_SIZE=200
NTXS=$((BLOCKSIZE*4))
MACH_PREFIX=mach
RESULTSDIR=results
CLOUD_PROVIDER=digitalocean
set +u
if [[ "$MACH_PREFIX" == "" ]]; then
MACH_PREFIX=mach
fi
set -u
export TMHEAD=`git rev-parse --abbrev-ref HEAD`
export TM_IMAGE="tendermint/tmbase"


Loading…
Cancel
Save