From c0c41f47b2e0bdcfa34855fbe5ddc48a383cbf87 Mon Sep 17 00:00:00 2001 From: ghatwala Date: Wed, 17 Jul 2019 14:58:17 +0530 Subject: [PATCH] Attempt to build this package on power Adding power support in travis.yml - Adding ppc64le build and running "before_script_linux.sh" on intel only via travis.yml Signed-off-by: ghatwala --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 108c479..987cc90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ os: - linux - osx + - linux-ppc64le notifications: email: false go: @@ -19,7 +20,7 @@ before_script: - make deps - "export DISPLAY=:99.0" - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sh ci/before_script_linux.sh; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" && "$HOSTTYPE" != "powerpc64le" ]]; then sh ci/before_script_linux.sh; fi - make validate script: make test