travis: Switch build matrix from `os` to `jobs`

There are a couple ways to declare a build matrix in Travis CI, refer to
https://docs.travis-ci.com/user/build-matrix.

Since upcoming commits will add more ways to run tests, switch the build
matrix from simple OS variation to a more powerful list of jobs.
pull/1563/head
Alex Thiessen 2020-04-18 18:39:36 +02:00
parent 44ddc58334
commit 576f2b37ac
No known key found for this signature in database
GPG Key ID: 6C90AE2B18A1CF5B
1 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
script: test/run
language: shell language: shell
os:
- linux jobs:
- osx - script: test/run
os: linux
- script: test/run
os: osx