diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2017-01-23 11:12:21 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-01-25 06:11:16 -0800 |
commit | 671b067a57a9199b0155ad1741b4ebab88a925f8 (patch) | |
tree | 749c25ea2b7b218d207773f55965decdf331ba98 /.travis.yml | |
parent | 1ff6a7300b11519584a545e50216daa346602670 (diff) |
fix compile failure on freebsd and windows
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index bd3c9dae..38aa9baa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,16 @@ matrix: install: go get -t ./... script: go test ./... - go: 1.7 + install: go get -t ./... + script: cd gobgpd && go build + env: + - GOOS=windows + - go: 1.7 + install: go get -t ./... + script: cd gobgpd && go build + env: + - GOOS=freebsd + - go: 1.7 os: osx before_install: true install: go get -t ./... |