From 72511cd7353dee9f52be547d64a25dc930bb09d3 Mon Sep 17 00:00:00 2001 From: csrwng Date: Thu, 23 Oct 2014 12:49:27 -0400 Subject: [PATCH] Initialize Travis --- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..7a579b344 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: go + +go: + - 1.3 + - 1.2 + +env: + - TEST_ASSETS=true + - TEST_ASSETS=false + +matrix: + exclude: + - go: 1.2 + env: TEST_ASSETS=true + +install: + - go get code.google.com/p/go.tools/cmd/cover + - ./hack/build-go.sh + +script: + - ./hack/test-go.sh + +notifications: + irc: "chat.freenode.net#openshift-dev"