Blame script/ci-install-deps

Packit Service 7770af
#!/bin/bash
Packit Service 7770af
if [ "x$COVERAGE" == "xyes" ]; then
Packit Service 7770af
  pip install --user gcovr
Packit Service 7770af
  pip install --user cpp-coveralls
Packit Service 7770af
else
Packit Service 7770af
  echo "no dependencies to install"
Packit Service 7770af
fi
Packit Service 7770af
Packit Service 7770af
if [ "x$AUTOTOOLS" == "xyes" ]; then
Packit Service 7770af
  AUTOTOOLS=yes
Packit Service 7770af
Packit Service 7770af
  if [ "$TRAVIS_OS_NAME" == "linux" ]; then
Packit Service 7770af
    sudo add-apt-repository -y ppa:rbose-debianizer/automake &> /dev/null
Packit Service 7770af
    sudo apt-get -qq update
Packit Service 7770af
    sudo apt-get -qq install automake
Packit Service 7770af
  fi
Packit Service 7770af
Packit Service 7770af
  # https://github.com/sass/libsass/pull/2183
Packit Service 7770af
  if [ "$TRAVIS_OS_NAME" == "osx" ]; then
Packit Service 7770af
    brew uninstall libtool
Packit Service 7770af
    brew install libtool
Packit Service 7770af
  fi
Packit Service 7770af
fi