diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-03-27 23:46:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 23:46:46 (GMT) |
commit | cb09f421c88ff4c0bb8282ef6ca49d5ce2ccfc2c (patch) | |
tree | 372318c604a96a135c24371454acd9c32d85590a | |
parent | cf57fe13b44e3994096ae79f32c11475f333a94f (diff) | |
download | cpython-cb09f421c88ff4c0bb8282ef6ca49d5ce2ccfc2c.zip cpython-cb09f421c88ff4c0bb8282ef6ca49d5ce2ccfc2c.tar.gz cpython-cb09f421c88ff4c0bb8282ef6ca49d5ce2ccfc2c.tar.bz2 |
Drop the standard gcc test build on Travis (GH-853) (GH-860)
Instead have gcc be used for the coverage build so gcc is exercised in at least one place.
(cherry picked from commit ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7)
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 3496a1a..5fee6cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,11 @@ os: - linux # macOS builds are disabled as the machines are under-provisioned on Travis, # adding up to an extra hour completing a full CI run. - #- osx compiler: - clang - - gcc + # gcc also works, but to keep the # of concurrent builds down, we use one C + # compiler here and the other to run the coverage build. env: - TESTING=cpython @@ -32,7 +32,7 @@ matrix: include: - os: linux language: python - python: 3.5 + python: 3.6 env: - TESTING=docs before_script: @@ -42,7 +42,7 @@ matrix: - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q -W" - os: linux language: c - compiler: clang + compiler: gcc env: - TESTING=coverage before_script: |