From bddd59cd02c2abcea0c70e8c367a155f13ac2435 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Wed, 23 Dec 2020 01:23:50 -0500 Subject: [PATCH 1/4] Update .travis.yml Adding Power support. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8dd0ac3..15ee035 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +arch: + - amd64 + - ppc64le language: python python: - "2.7" From feb6f6dec0f48bd6bfe68797441d97124f5c82e1 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Wed, 23 Dec 2020 01:27:27 -0500 Subject: [PATCH 2/4] Update .travis.yml --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 15ee035..85732f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,12 @@ matrix: - python: 3.7 dist: xenial sudo: true + arch: amd64 + - python: 3.7 + dist: xenial + sudo: true + arch: ppc64le + # /end python 3.7 hack before_install: - "sudo apt-get update -qq" From e28370d325da2e32d1d768418efa8dbc6d9367a6 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Wed, 23 Dec 2020 01:43:57 -0500 Subject: [PATCH 3/4] Update .travis.yml Excluding python - pypy for ppc64le which is not supported. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 85732f6..ef83bbc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,11 @@ python: - "3.5" - "3.6" - "pypy" +jobs: + exclude: + - python: pypy + arch: ppc64le + # Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs # Should be able to remove this wierd stuff once # https://github.com/travis-ci/travis-ci/issues/9815 is resolved From e7c301d4adecf3be58ff0b6441885eca0b461dca Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Wed, 23 Dec 2020 01:56:33 -0500 Subject: [PATCH 4/4] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ef83bbc..546adf9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ python: - "pypy" jobs: exclude: - - python: pypy + - python: "pypy" arch: ppc64le # Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs