URI:
       tOnly run one Travis build on Mac - vaccinewars - be a doctor and try to vaccinate the world
  HTML git clone git://src.adamsgaard.dk/vaccinewars
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 7ad97db90bf225d725f4dd94cfc5d91a7b01314d
   DIR parent ce18bc615c475854bc4b4bcd0e5750092a7c8cdf
  HTML Author: Ben Webb <ben@salilab.org>
       Date:   Sat, 28 Nov 2020 22:00:43 -0800
       
       Only run one Travis build on Mac
       
       No need to test various different configurations
       on Mac since they are already tested on Linux (and
       our Mac environment doesn't support them anyway).
       Just test once on Mac with default configuration.
       
       Diffstat:
         M .travis.yml                         |       8 +++++---
       
       1 file changed, 5 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/.travis.yml b/.travis.yml
       t@@ -1,12 +1,14 @@
        dist: focal
        language: c
       -os:
       -  - linux
       -  - osx
       +os: linux
        env:
          - FLAGS="--enable-networking --disable-gtk3"
          - FLAGS="--enable-networking --enable-gtk3"
          - FLAGS="--disable-networking"
       +jobs:
       +  include:
       +    - os: mac
       +      env: FLAGS="--enable-networking"
        before_install:
          - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq && sudo apt-get install -qq automake autoconf gcc libglib2.0-dev libcurl4-openssl-dev libgtk2.0-dev libgtk-3-dev; fi