Browse Source

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

tags/json-c-0.14-20200419
Eric Haszlakiewicz 5 years ago
parent
commit
cf8421c36d
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      .travis.yml

+ 5
- 4
.travis.yml View File

@@ -124,10 +124,11 @@ before_install:
fi fi
before_script: 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: script:
- make - make


Loading…
Cancel
Save