mirror of
https://github.com/containous/traefik.git
synced 2025-01-11 05:17:52 +03:00
91b699fbe0
- Add travis build file - Use golang alpine image - Clean scripts a little bit - Disable CGO for test-integration >_<
11 lines
203 B
Bash
Executable File
11 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
|