Allow travis build failure on GOOS=openbsd GOARCH=arm

It seems that the package:

  golang.org/x/sys/unix

has a build failure on openbsd/arm:

  # golang.org/x/sys/unix
  ../../golang.org/x/sys/unix/flock.go:18: undefined: Flock_t
  ../../golang.org/x/sys/unix/sockcmsg_unix.go:36: undefined: Cmsghdr
  ../../golang.org/x/sys/unix/sockcmsg_unix.go:42: undefined: Cmsghdr

it seems a failure on the upstream package, so for now let's allow
the build failure.

This commit removes also the build for dragonfly that is not officially
supported.
This commit is contained in:
Cristian Maglie
2017-03-12 22:47:07 +01:00
parent 4366d1c449
commit c4db4e3956

View File

@@ -15,14 +15,13 @@ env:
- TEST_OS=darwin TEST_ARCH=386 - TEST_OS=darwin TEST_ARCH=386
- TEST_OS=darwin TEST_ARCH=amd64 - TEST_OS=darwin TEST_ARCH=amd64
- TEST_OS=freebsd TEST_ARCH=amd64 - TEST_OS=freebsd TEST_ARCH=amd64
- TEST_OS=dragonfly TEST_ARCH=amd64
- TEST_OS=openbsd TEST_ARCH=amd64 - TEST_OS=openbsd TEST_ARCH=amd64
- TEST_OS=openbsd TEST_ARCH=386 - TEST_OS=openbsd TEST_ARCH=386
- TEST_OS=openbsd TEST_ARCH=arm - TEST_OS=openbsd TEST_ARCH=arm
matrix: matrix:
allow_failures: allow_failures:
- env: TEST_OS=dragonfly TEST_ARCH=amd64 - env: TEST_OS=openbsd TEST_ARCH=arm
before_install: before_install: