Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding ppc64le architecture support on Travis-CI #348

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ python:
- "3.7"
- "3.8"

arch:
- amd64
- ppc64le

install:
- travis_retry pip install -U six setuptools pip wheel
- travis_retry pip install -U tox tox-travis coverage
Expand Down Expand Up @@ -34,6 +38,26 @@ matrix:
- tox --installpkg ./dist/djangorestframework_filters-*.whl
- tox # test sdist

# Adding jobs for ppc64le architecture
- python: "3.8"
arch: ppc64le
env: TOXENV="performance"
script: tox -- -v 2
- python: "3.8"
arch: ppc64le
env: TOXENV="warnings"
- python: "3.8"
arch: ppc64le
env: TOXENV="isort,lint"
- python: "3.8"
arch: ppc64le
env: TOXENV="dist"
script:
- python setup.py bdist_wheel
- rm -r djangorestframework_filters.egg-info
- tox --installpkg ./dist/djangorestframework_filters-*.whl
- tox # test sdist

allow_failures:
- env: TOXENV="warnings"
fast_finish: true