Commit c9ec9537 authored by Eshant Gupta's avatar Eshant Gupta Committed by GitHub

Adding comments

Restoring mis-placed comment, added comment for PPC64LE specific permission fix and reduced number of jobs for the same platform.
parent 74febd27
...@@ -21,17 +21,11 @@ jobs: ...@@ -21,17 +21,11 @@ jobs:
python: pypy3 python: pypy3
- arch: ppc64le - arch: ppc64le
python: 3.5 python: 3.5
- arch: ppc64le
python: 3.6
- arch: ppc64le
python: 3.7
- &latest_py3_ppc - &latest_py3_ppc
arch: ppc64le arch: ppc64le
python: 3.8 python: 3.8
- <<: *latest_py3_ppc - <<: *latest_py3_ppc
env: LANG=C env: LANG=C
- arch: ppc64le
python: 3.8-dev
- arch: ppc64le - arch: ppc64le
python: 3.9-dev python: 3.9-dev
- <<: *latest_py3_ppc - <<: *latest_py3_ppc
...@@ -50,6 +44,8 @@ jobs: ...@@ -50,6 +44,8 @@ jobs:
cache: pip cache: pip
before_install: before_install:
# Fix for PPC64LE, where permissions are fixed to allow tox/pip to install packages.
# As travis base images for PPC64LE except for bionic, do not have this fix.
- | - |
if [[ "$TRAVIS_CPU_ARCH" == "ppc64le" ]]; then if [[ "$TRAVIS_CPU_ARCH" == "ppc64le" ]]; then
sudo chown -Rfv $USER:$GROUP ~/.cache/pip/wheels sudo chown -Rfv $USER:$GROUP ~/.cache/pip/wheels
...@@ -59,8 +55,8 @@ install: ...@@ -59,8 +55,8 @@ install:
# ensure we have recent pip/setuptools/wheel # ensure we have recent pip/setuptools/wheel
- pip install --disable-pip-version-check --upgrade pip setuptools wheel - pip install --disable-pip-version-check --upgrade pip setuptools wheel
- pip install --upgrade tox tox-venv
# need tox to get started # need tox to get started
- pip install --upgrade tox tox-venv
# Output the env, to verify behavior # Output the env, to verify behavior
- pip freeze --all - pip freeze --all
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment