build_edgex_mock.sh 291 B

1234567891011121314
  1. #!/bin/bash
  2. set -e
  3. echo "building edgex mock pubsub programs."
  4. rm -rf test/edgex/pub
  5. rm -rf test/edgex/sub/sub
  6. go build -o test/edgex/pub test/edgex/pub.go
  7. go build -o test/edgex/sub/sub test/edgex/sub/sub.go
  8. chmod +x test/edgex/pub
  9. chmod +x test/edgex/sub/sub
  10. export BUILD_ID=dontKillMe