vaccinewars

be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars # fast
git clone https://src.adamsgaard.dk/vaccinewars.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 7ad97db90bf225d725f4dd94cfc5d91a7b01314d
parent ce18bc615c475854bc4b4bcd0e5750092a7c8cdf
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(-)

diff --git a/.travis.yml b/.travis.yml @@ -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