Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
Travis-ci: added support for ppc64le
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaymsh committed Oct 9, 2020
1 parent ed93034 commit d1c64ba
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,39 @@ language: python
matrix:
include:
- python: 3.6
arch: amd64
env: TOXENV=py
- python: 3.5
arch: amd64
env: TOXENV=py
- python: 3.4
arch: amd64
env: TOXENV=py
- python: 2.7
arch: amd64
env: TOXENV=py
- python: 3.6
arch: ppc64le
env: TOXENV=py
- python: 3.5
arch: ppc64le
env: TOXENV=py
- python: 3.4
arch: ppc64le
env: TOXENV=py
- python: 2.7
arch: ppc64le
env: TOXENV=py
- python: pypy
env: TOXENV=py

sudo: false

before_install:
- |
if [[ "$TRAVIS_CPU_ARCH" == "ppc64le" ]]; then
sudo chown -Rv $USER:$GROUP ~/.cache/pip/wheels
fi
install:
- pip install -U pip
- pip install -U tox coverage coveralls
Expand Down

0 comments on commit d1c64ba

Please sign in to comment.