| tTest on Travis with and without networking - vaccinewars - be a doctor and try… | |
| git clone git://src.adamsgaard.dk/vaccinewars | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 8da80e38695d050d182e2f896fa26b9a6c7546b8 | |
| parent 51b55acce77a77640c955dc442a724f9ca1b25ca | |
| Author: Ben Webb <[email protected]> | |
| 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(-) | |
| --- | |
| 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 automak… | |
| - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq && sudo a… | |
| script: | |
| - - ./autogen.sh && make -j2 | |
| + - ./autogen.sh $FLAGS && make -j2 |