diff options
author | Hiro Asari <asari.ruby@gmail.com> | 2017-05-31 22:34:00 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-05-31 22:34:00 (GMT) |
commit | a5aa72ac789052411797c6f079ffff0a9fdbf82c (patch) | |
tree | 01be95f2a69e117afc396835a8d5c4acd5729070 /.travis.yml | |
parent | fc354f07855a9197e71f851ad930cbf5652f9160 (diff) | |
download | cpython-a5aa72ac789052411797c6f079ffff0a9fdbf82c.zip cpython-a5aa72ac789052411797c6f079ffff0a9fdbf82c.tar.gz cpython-a5aa72ac789052411797c6f079ffff0a9fdbf82c.tar.bz2 |
Fix Travis config to reinstate test build (GH-1879)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml index 335fd9f..f3ecd04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,19 +11,6 @@ branches: - master - /^\d\.\d$/ -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. - -compiler: - - clang - # 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 - matrix: fast_finish: true allow_failures: @@ -31,6 +18,13 @@ matrix: - TESTING=coverage include: - os: linux + language: c + compiler: clang + # 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 + - os: linux language: python # Build the docs against a stable version of Python so code bugs don't hold up doc-related PRs. python: 3.6 |