Skip to content

Commit

Permalink
Move drone.io script into source control.
Browse files Browse the repository at this point in the history
  • Loading branch information
afshin committed Oct 2, 2016
1 parent f11748d commit 57a1ca8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/drone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
VERSION="4.1.5"
wget --quiet https://github.com/zeromq/zeromq4-1/releases/download/v$VERSION/zeromq-$VERSION.tar.gz
tar xzf zeromq-$VERSION.tar.gz
rm zeromq-$VERSION.tar.gz
cd zeromq-$VERSION
./autogen.sh
./configure
make check
sudo make install
sudo ldconfig
cd /home/ubuntu/src/github.com/ursiform/sleuth
rm -rf zeromq-$VERSION
go get
go build
go get github.com/axw/gocov/gocov
go get github.com/mattn/goveralls
go test -race && goveralls -service drone.io -repotoken $COVERALLS_TOKEN

0 comments on commit 57a1ca8

Please sign in to comment.