From 2bf75ec1bb03a566c6bee927337314b18ba9493a Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 25 Jan 2020 18:15:34 -0500 Subject: [PATCH] Also run tests on macOS. However, allow them to fail (or hang/timeout, if there aren't enough macOS compute resources), so that our progress isn't blocked, since Linux VMs are plentiful. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.travis.yml b/.travis.yml index 19012cf..7a941f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,10 +12,23 @@ # See the License for the specific language governing permissions and # limitations under the License. +dist: bionic +sudo: false + language: generic +os: + - linux + - osx + branches: only: - master +matrix: + allow_failures: + - os: osx + + fast_finish: true + script: make test