File: ci-install-deps

package info (click to toggle)
golang-github-bep-golibsass 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,808 kB
  • sloc: cpp: 30,398; ansic: 848; sh: 662; makefile: 340; perl: 56
file content (20 lines) | stat: -rwxr-xr-x 412 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
if [ "x$COVERAGE" == "xyes" ]; then
  pip2 install --user gcovr
  pip2 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

fi

exit 0