Apparently cmake is already installed on travis osx builds. Try another approach to figure out what was failing.

This commit is contained in:
Eric Haszlakiewicz
2020-04-08 02:02:25 +00:00
parent fb0b653612
commit cf8421c36d

View File

@@ -124,10 +124,11 @@ before_install:
fi fi
before_script: before_script:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then - mkdir -p build || (echo "Failed to mkdir build" ; false)
brew install cmake; - cd build || (echo "Failed to cd build" ; false)
fi - cmake .. || (echo "Failed to run cmake"; false)
- mkdir build && cd build && cmake .. - echo "After cmake"
- pwd
script: script:
- make - make