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
before_script:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew install cmake;
fi
- mkdir build && cd build && cmake ..
- mkdir -p build || (echo "Failed to mkdir build" ; false)
- cd build || (echo "Failed to cd build" ; false)
- cmake .. || (echo "Failed to run cmake"; false)
- echo "After cmake"
- pwd
script:
- make