Skip to content

Commit

Permalink
stolon: Add travis CI.
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
sgotti committed Sep 9, 2016
1 parent 56450ea commit 94e5534
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: go

go:
- 1.5.4
- 1.6.3
- 1.7

env:
- TARGET=amd64
- TARGET=arm64

install:
-

script:
./test

0 comments on commit 94e5534

Please sign in to comment.