Skip to content
Snippets Groups Projects
build.sh 640 B
Newer Older
#!/bin/bash

# This intended for manually running the integration tests on your own machine
# and assumes that you've cloned the Go repos to your GOPATH and updated them
# with Glide.

pushd $GOPATH/src/gitlab.com/privategrity/client
go build
popd
mv $GOPATH/src/gitlab.com/privategrity/client/client bin

pushd $GOPATH/src/gitlab.com/privategrity/server
go build
popd
mv $GOPATH/src/gitlab.com/privategrity/server/server bin

pushd $GOPATH/src/gitlab.com/privategrity/channelbot
go build
popd
mv $GOPATH/src/gitlab.com/privategrity/channelbot/channelbot bin