travis_osx_before_install.sh 324 B

1234567891011121314151617
  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. brew install graphviz
  11. pip install --user sphinx
  12. pip install --user breathe
  13. pip install --user sphinx_rtd_theme
  14. fi