From: Eric Haszlakiewicz Date: Wed, 8 Apr 2020 01:45:49 +0000 (+0000) Subject: Install cmake on osx travis builds. s/make check/make test/ X-Git-Tag: json-c-0.14-20200419~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb0b653612dcad7e61a0c167bde55a9c329166bf;p=thirdparty%2Fjson-c.git Install cmake on osx travis builds. s/make check/make test/ --- diff --git a/.travis.yml b/.travis.yml index 79c2d36c..f773160d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -104,7 +104,7 @@ matrix: - mkdir build && cd build && cmake .. script: - make - - make check + - make test after_success: - coveralls --exclude tests --exclude fuzz @@ -124,6 +124,9 @@ before_install: fi before_script: + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then + brew install cmake; + fi - mkdir build && cd build && cmake .. script: