From ff40e0ae5d568d97dae5bcd4762f414536a3bb23 Mon Sep 17 00:00:00 2001 From: Eshant Gupta Date: Fri, 19 Feb 2021 13:55:47 +0000 Subject: [PATCH] ppc64le arch added, darwin/386 excluded enabling CI for PPC64LE --- .travis.yml | 5 +++++ Makefile | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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