tTest on Travis with and without networking - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8da80e38695d050d182e2f896fa26b9a6c7546b8
 (DIR) parent 51b55acce77a77640c955dc442a724f9ca1b25ca
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Thu, 12 Nov 2020 23:50:14 -0800
       
       Test on Travis with and without networking
       
       Diffstat:
         M .travis.yml                         |       5 ++++-
       
       1 file changed, 4 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/.travis.yml b/.travis.yml
       t@@ -3,9 +3,12 @@ language: c
        os:
          - linux
          - osx
       +env:
       +  - FLAGS="--enable-networking"
       +  - FLAGS="--disable-networking"
        before_install:
          - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update && brew install automake autoconf glib; fi
          - 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 libgtk-3-dev; fi
        
        script:
       - - ./autogen.sh && make -j2
       + - ./autogen.sh $FLAGS && make -j2