Remove '- dist: xenial' because both jobs are run in the same Ubuntu version (14.04) as I have seen in the build logs.
The travis-CI docs confirm the OS environment is 'Ubuntu 14.04 LTS trusty'. Travis-CI only proposes 14.04 LTS Trusty and there is no plan to update to 16.04 xenial (c.f. https://github.com/travis-ci/travis-ci/issues/5821) It is useless to add a second job because it will run in the same environment.
This commit is contained in:
+5
-2
@@ -5,8 +5,11 @@ matrix:
|
|||||||
include:
|
include:
|
||||||
- dist: trusty
|
- dist: trusty
|
||||||
env: dist="14.04 LTS trusty"
|
env: dist="14.04 LTS trusty"
|
||||||
- dist: xenial
|
# - dist: xenial
|
||||||
env: dist="16.04 LTS xenial"
|
# env: dist="16.04 LTS xenial"
|
||||||
|
# Travis-CI only proposes 14.04 LTS Trusty and there is no plan to update to 16.04 xenial
|
||||||
|
# (c.f. https://github.com/travis-ci/travis-ci/issues/5821)
|
||||||
|
# It is useless to add a second job because it will run in the same Ubuntu version (14.04)
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get update -qq
|
- sudo apt-get update -qq
|
||||||
|
|||||||
Reference in New Issue
Block a user