diff --git a/.travis.yml b/.travis.yml index a83f297b..a69d22f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,11 @@ go: - 1.12.x - tip +matrix: + include: + - arch: ppc64le + go: tip + # Setting sudo access to false will let Travis CI use containers rather than # VMs to run the tests. For more details see: # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/ diff --git a/Makefile b/Makefile index 28e57a90..93d89755 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ build-all: gox -verbose \ -ldflags "-X main.version=${VERSION}" \ -os="linux darwin windows freebsd openbsd netbsd" \ - -arch="amd64 386 armv5 armv6 armv7 arm64 s390x" \ - -osarch="!darwin/arm64" \ + -arch="amd64 386 armv5 armv6 armv7 arm64 s390x ppc64le" \ + -osarch="!darwin/arm64 !darwin/386" \ -output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" . dist: build-all