Merge matrix: and jobs: sections in .travis.yml

* These are aliases in travis, and defining them twice causes one to
  overwrite the other.  In this case, `matrix` was overwriting `jobs`,
  which caused `Documentation` not to run.
This commit is contained in:
Kevin Squire 2020-02-10 10:25:14 -08:00
parent 26a494410a
commit 5fcc780361

View File

@ -6,10 +6,6 @@ os:
julia:
- {{VERSION}}
- nightly
matrix:
allow_failures:
- julia: nightly
fast_finish: true
notifications:
email: false
{{#COVERAGE}}
@ -21,8 +17,11 @@ after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
{{/COVERALLS}}
{{/COVERAGE}}
{{#DOCUMENTER}}
jobs:
allow_failures:
- julia: nightly
fast_finish: true
{{#DOCUMENTER}}
include:
- stage: Documentation
julia: {{VERSION}}