91b699fbe0
- Add travis build file - Use golang alpine image - Clean scripts a little bit - Disable CGO for test-integration >_<
10 lines
203 B
Bash
Executable file
10 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export DEST=.
|
|
|
|
TESTFLAGS="$TESTFLAGS -test.timeout=30m -check.v"
|
|
|
|
cd integration
|
|
CGO_ENABLED=0 go test $TESTFLAGS
|