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 code to run on Powersystem #118

Open
wants to merge 5 commits 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
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# Configuration script to Travis-CI
arch:
- amd64
- ppc64le
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- |
if [[ "$TRAVIS_CPU_ARCH" == "ppc64le" ]]; then
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py > get-poetry.py
python get-poetry.py -y --version 1.0.0b3
source ~/.poetry/env
fi
install:
- pip install pipenv coveralls[yaml]
- pipenv sync --dev
Expand All @@ -13,3 +23,9 @@ script:
- pipenv run mypy src
after_success:
coveralls
jobs:
exclude:
- arch: ppc64le
python: 3.6
- arch: ppc64le
python: 3.7
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you also add some comments here why these are excluded?