travis_osx_before_install.sh 298 B

12345678910111213141516
  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 userspace-rcu
  9. brew install valgrind
  10. pip install --user sphinx
  11. pip install --user breathe
  12. pip install --user sphinx_rtd_theme
  13. fi