From 8bd747a9046c406984982972e911ce6480775811 Mon Sep 17 00:00:00 2001 From: Johan Euphrosine Date: Thu, 12 Jun 2014 13:49:36 -0700 Subject: [PATCH] add travis integration --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..17c58d1d60d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: go + +go: + - 1.2 + - tip + +install: + - bad=$(gofmt -s -l pkg/ cmd/) bash -x -c '[[ -z "$bad" ]]' + - ./hack/build-go.sh + +script: + - ./hack/test-go.sh + - ./hack/integration-test.sh + - ./hack/e2e-test.sh