Sha256: 169f833cf85735e7abcba670ac67082c778acc3922389b2886884ea4634eab3c
Contents?: true
Size: 547 Bytes
Versions: 6
Compression:
Stored size: 547 Bytes
Contents
#!/bin/bash if [ "x$COVERAGE" == "xyes" ]; then pip install --user gcovr pip install --user cpp-coveralls else echo "no dependencies to install" fi if [ "x$AUTOTOOLS" == "xyes" ]; then AUTOTOOLS=yes if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo add-apt-repository -y ppa:rbose-debianizer/automake &> /dev/null sudo apt-get -qq update sudo apt-get -qq install automake fi # https://github.com/sass/libsass/pull/2183 if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew uninstall libtool brew install libtool fi fi
Version data entries
6 entries across 6 versions & 2 rubygems