travis_linux_before_install.sh 660 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. set -ev
  3. echo "=== Updating the build environment in $LOCAL_PKG ==="
  4. echo "=== Installing python packages ==="
  5. pip install --user cpp-coveralls
  6. pip install --user sphinx
  7. pip install --user sphinx_rtd_theme
  8. wget https://launchpad.net/~lttng/+archive/ubuntu/ppa/+build/11525342/+files/liburcu-dev_0.9.x+stable+bzr1192+pack30+201612060302~ubuntu14.04.1_amd64.deb
  9. wget https://launchpad.net/~lttng/+archive/ubuntu/ppa/+build/11525342/+files/liburcu4_0.9.x+stable+bzr1192+pack30+201612060302~ubuntu14.04.1_amd64.deb
  10. sudo dpkg -i *.deb
  11. rm *.deb
  12. echo "=== Installed versions are ==="
  13. clang --version
  14. g++ --version
  15. cppcheck --version
  16. valgrind --version