
- Believe we need sudo to create netns - Use syscall instead of relying on ip netns - Add sudo to .travis.yml - Needs more -E - Revert Godeps GoVersion to 1.4.2 - in travis, test command is run with all necessary env vars - Loopback plugin only works on 'lo' interface - Update README, add loopback plugin config - note script dependency on jq Signed-off-by: Gabe Rosenhouse <grosenhouse@pivotal.io>
20 lines
235 B
YAML
20 lines
235 B
YAML
language: go
|
|
sudo: required
|
|
|
|
go:
|
|
- 1.4
|
|
- 1.5.3
|
|
- 1.6
|
|
|
|
env:
|
|
- TOOLS_CMD=golang.org/x/tools/cmd
|
|
|
|
install:
|
|
- go get ${TOOLS_CMD}/vet
|
|
|
|
script:
|
|
- sudo -E /bin/bash -c 'PATH=$GOROOT/bin:$PATH ./test'
|
|
|
|
notifications:
|
|
email: false
|