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

.travis.yml: experiment with Python versions #120

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
74 changes: 9 additions & 65 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,68 +1,12 @@
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8 gcc-4.8-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-4.8 && CXX=g++-4.8"

# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9 gcc-4.9-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"

# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5 gcc-5-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"

# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6 gcc-6-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"

# works on Precise and Trusty
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7 gcc-7-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"

- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8 gcc-8-plugin-dev
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
os: linux

python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch

language: c
compiler:
Expand Down