Add support for ppc64le (#6116)

Signed-off-by: Rafael Peria de Sene <rpsene@br.ibm.com>
This commit is contained in:
Rafael Peria de Sene 2018-07-03 13:42:19 -03:00 committed by kannappanr
parent 80b3e9cb03
commit 317e648c0d
2 changed files with 29 additions and 21 deletions

View file

@ -8,17 +8,13 @@ dist: trusty
language: go language: go
os: matrix:
- linux include:
- os: linux
env: env:
- ARCH=x86_64 - ARCH=x86_64
go: 1.10.1
before_install:
- nvm install stable
script: script:
## Run all the tests
- make - make
- diff -au <(gofmt -s -d cmd) <(printf "") - diff -au <(gofmt -s -d cmd) <(printf "")
- diff -au <(gofmt -s -d pkg) <(printf "") - diff -au <(gofmt -s -d pkg) <(printf "")
@ -26,9 +22,21 @@ script:
- make coverage - make coverage
- node --version - node --version
- cd browser && yarn && yarn test && cd .. - cd browser && yarn && yarn test && cd ..
- os: linux-ppc64le
env:
- ARCH=ppc64le
go: 1.10.1
script:
- make
- diff -au <(gofmt -s -d cmd) <(printf "")
- diff -au <(gofmt -s -d pkg) <(printf "")
- make test GOFLAGS="-timeout 15m -v"
- make coverage
- node --version
- cd browser && yarn && yarn test && cd ..
before_install:
- nvm install stable
after_success: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)
go:
- '1.10.1'

View file

@ -89,11 +89,11 @@ check_minimum_version() {
assert_is_supported_arch() { assert_is_supported_arch() {
case "${ARCH}" in case "${ARCH}" in
x86_64 | amd64 | aarch64 | arm* ) x86_64 | amd64 | aarch64 | ppc64le | arm* )
return return
;; ;;
*) *)
echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, arm*]" echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*]"
exit 1 exit 1
esac esac
} }