Merge pull request #1563 from rico-chet/refactor-travis-env-to-jobs

Refactor travis build matrix to `jobs`
pull/1564/head
Nils Winkler 2020-04-19 13:06:14 +02:00 committed by GitHub
commit e0f72c98e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 6 deletions

View File

@ -1,6 +1,15 @@
sudo: false # YAML anchors need to appear first.
script: test/run # Keys starting with an underscore are the custom ones, refer to
language: c # https://docs.travis-ci.com/user/build-config-yaml#private-keys-as-yaml-anchors-and-aliases-and-external-tooling
os:
- linux _native_job: &native_job
- osx script: |
test/run
language: shell
jobs:
- <<: *native_job
os: linux
- <<: *native_job
os: osx