From c4db4e3956c9d505b6cf388a4bdbfc0c35104f13 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 12 Mar 2017 22:47:07 +0100 Subject: [PATCH] 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. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e962e65..5c29618 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,14 +15,13 @@ env: - TEST_OS=darwin TEST_ARCH=386 - TEST_OS=darwin 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=386 - TEST_OS=openbsd TEST_ARCH=arm matrix: allow_failures: - - env: TEST_OS=dragonfly TEST_ARCH=amd64 + - env: TEST_OS=openbsd TEST_ARCH=arm before_install: