Install cmake on osx travis builds. s/make check/make test/

This commit is contained in:
Eric Haszlakiewicz
2020-04-08 01:45:49 +00:00
parent a3b82cbc77
commit fb0b653612

View File

@@ -104,7 +104,7 @@ matrix:
- mkdir build && cd build && cmake .. - mkdir build && cd build && cmake ..
script: script:
- make - make
- make check - make test
after_success: after_success:
- coveralls --exclude tests --exclude fuzz - coveralls --exclude tests --exclude fuzz
@@ -124,6 +124,9 @@ before_install:
fi fi
before_script: before_script:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew install cmake;
fi
- mkdir build && cd build && cmake .. - mkdir build && cd build && cmake ..
script: script: