Migrate CI to travis

- Add travis build file
- Use golang alpine image
- Clean scripts a little bit
- Disable CGO for test-integration >_<
This commit is contained in:
emile 2016-02-19 12:58:06 +01:00
parent 3a08655b06
commit 91b699fbe0
No known key found for this signature in database
GPG key ID: D808B4C167352E59
7 changed files with 63 additions and 19 deletions

View file

@ -1,4 +1,5 @@
#!/bin/bash
set -e
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export DEST=.
@ -6,5 +7,4 @@ export DEST=.
TESTFLAGS="$TESTFLAGS -test.timeout=30m -check.v"
cd integration
go test $TESTFLAGS
CGO_ENABLED=0 go test $TESTFLAGS