From 576f2b37acf290ff44c034fd3c7f6fa3971e3b86 Mon Sep 17 00:00:00 2001 From: Alex Thiessen Date: Sat, 18 Apr 2020 18:39:36 +0200 Subject: [PATCH] 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. --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 198a72c0..a5d5806f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ -script: test/run language: shell -os: - - linux - - osx + +jobs: + - script: test/run + os: linux + - script: test/run + os: osx