Skip to content

Commit ad2f9e2

Browse files
authored
Drop the standard gcc test build on Travis (GH-853)
Instead have gcc be used for the coverage build so gcc is exercised in at least one place.
1 parent bbd3cf8 commit ad2f9e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ os:
1515
- linux
1616
# macOS builds are disabled as the machines are under-provisioned on Travis,
1717
# adding up to an extra hour completing a full CI run.
18-
#- osx
1918

2019
compiler:
2120
- clang
22-
- gcc
21+
# gcc also works, but to keep the # of concurrent builds down, we use one C
22+
# compiler here and the other to run the coverage build.
2323

2424
env:
2525
- TESTING=cpython
@@ -32,7 +32,7 @@ matrix:
3232
include:
3333
- os: linux
3434
language: python
35-
python: 3.5
35+
python: 3.6
3636
env:
3737
- TESTING=docs
3838
before_script:
@@ -42,7 +42,7 @@ matrix:
4242
- make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q -W"
4343
- os: linux
4444
language: c
45-
compiler: clang
45+
compiler: gcc
4646
env:
4747
- TESTING=coverage
4848
before_script:

0 commit comments

Comments
 (0)