From 94e5534938a0b26aa2126942e2e77d9fafee1f27 Mon Sep 17 00:00:00 2001 From: Simone Gotti Date: Fri, 9 Sep 2016 14:57:29 +0200 Subject: [PATCH] stolon: Add travis CI. Add travis CI to just test compilation and unit tests (no integration tests) with multiple go versions (1.5, 1.6 and 1.7) and architectures (amd64 and arm64). --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..d6150c447 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: go + +go: + - 1.5.4 + - 1.6.3 + - 1.7 + +env: + - TARGET=amd64 + - TARGET=arm64 + +install: + - + +script: + ./test