mirror of
https://github.com/minio/minio.git
synced 2025-04-25 04:33:20 -04:00
Add support for ppc64le (#6116)
Signed-off-by: Rafael Peria de Sene <rpsene@br.ibm.com>
This commit is contained in:
parent
80b3e9cb03
commit
317e648c0d
44
.travis.yml
44
.travis.yml
@ -8,27 +8,35 @@ dist: trusty
|
|||||||
|
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
os:
|
matrix:
|
||||||
- linux
|
include:
|
||||||
|
- os: linux
|
||||||
env:
|
env:
|
||||||
- ARCH=x86_64
|
- ARCH=x86_64
|
||||||
|
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 -race -v"
|
||||||
|
- make coverage
|
||||||
|
- node --version
|
||||||
|
- 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:
|
before_install:
|
||||||
- nvm install stable
|
- nvm install stable
|
||||||
|
|
||||||
script:
|
|
||||||
## Run all the tests
|
|
||||||
- make
|
|
||||||
- diff -au <(gofmt -s -d cmd) <(printf "")
|
|
||||||
- diff -au <(gofmt -s -d pkg) <(printf "")
|
|
||||||
- make test GOFLAGS="-timeout 15m -race -v"
|
|
||||||
- make coverage
|
|
||||||
- node --version
|
|
||||||
- cd browser && yarn && yarn test && cd ..
|
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
go:
|
|
||||||
- '1.10.1'
|
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user