blob: 9b1e073a94eaf94046d2328230936e165f53c769 [file] [log] [blame]
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -08001#!/usr/bin/env bash
Davide Pesavento15a74422022-08-19 15:48:45 -04002set -eo pipefail
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -08003
Davide Pesavento15a74422022-08-19 15:48:45 -04004APT_PKGS=(build-essential pkg-config python3-minimal
5 libboost-all-dev libssl-dev libsqlite3-dev)
6FORMULAE=(boost openssl pkg-config)
7PIP_PKGS=()
8case $JOB_NAME in
9 *code-coverage)
10 APT_PKGS+=(lcov python3-pip)
11 PIP_PKGS+=('gcovr~=5.2')
12 ;;
13 *Docs)
14 APT_PKGS+=(doxygen graphviz python3-pip)
Davide Pesavento22eeb292021-10-01 21:20:53 -040015 FORMULAE+=(doxygen graphviz)
Davide Pesavento15a74422022-08-19 15:48:45 -040016 PIP_PKGS+=(sphinx sphinxcontrib-doxylink)
17 ;;
18esac
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080019
Davide Pesavento15a74422022-08-19 15:48:45 -040020set -x
21
22if [[ $ID == macos ]]; then
Davide Pesavento22eeb292021-10-01 21:20:53 -040023 if [[ -n $GITHUB_ACTIONS ]]; then
Davide Pesavento15a74422022-08-19 15:48:45 -040024 export HOMEBREW_NO_INSTALL_UPGRADE=1
25 fi
26 brew update
27 brew install --formula "${FORMULAE[@]}"
Davide Pesavento15a74422022-08-19 15:48:45 -040028elif [[ $ID_LIKE == *debian* ]]; then
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080029 sudo apt-get -qq update
Davide Pesavento15a74422022-08-19 15:48:45 -040030 sudo apt-get -qy install "${APT_PKGS[@]}"
Davide Pesavento15a74422022-08-19 15:48:45 -040031elif [[ $ID_LIKE == *fedora* ]]; then
Davide Pesaventocda44892022-11-15 13:40:33 -050032 sudo dnf -y install gcc-c++ libasan lld pkgconf-pkg-config python3 \
Davide Pesavento9c4bd6d2022-07-26 15:28:08 -040033 boost-devel openssl-devel sqlite-devel
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -080034fi
Davide Pesaventocda44892022-11-15 13:40:33 -050035
36if (( ${#PIP_PKGS[@]} )); then
37 pip3 install --user --upgrade --upgrade-strategy=eager "${PIP_PKGS[@]}"
38fi