tTest build on MacOS - 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 0e228bac539b2890789b2c8457a0cd62f427a5cd
DIR parent c1aacc8fc1d345701e49f30726617ef5f20c953e
HTML Author: Ben Webb <ben@salilab.org>
Date: Thu, 12 Nov 2020 23:35:42 -0800
Test build on MacOS
Diffstat:
M .travis.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
DIR diff --git a/.travis.yml b/.travis.yml
t@@ -1,8 +1,11 @@
dist: focal
language: c
+os:
+ - linux
+ - osx
before_install:
- - sudo apt-get update -qq
- - sudo apt-get install -qq automake autoconf gcc libglib2.0-dev libcurl4-openssl-dev
+ - 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