travis_osx_before_install.sh 297 B

123456789101112131415161718
  1. #!/bin/bash
  2. set -ev
  3. if [ $ANALYZE = "true" ]; then
  4. echo "Skipping static analysis for OS X"
  5. exit 0
  6. else
  7. brew install check
  8. brew install libxml2
  9. brew install userspace-rcu
  10. brew install valgrind
  11. pip install --user sphinx
  12. pip install --user breathe
  13. pip install --user sphinx_rtd_theme
  14. fi