mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
43 lines
984 B
Bash
43 lines
984 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# detect CI
|
||
|
if [ -n "${TRAVIS-}" ]; then
|
||
|
# Travis-CI
|
||
|
CI_NAME="$(echo "$TRAVIS_OS_NAME" | tr '[:upper:]' '[:lower:]')"
|
||
|
elif [ "$SYSTEM_COLLECTIONID" != "" ]; then
|
||
|
# Azure Pipelines
|
||
|
CI_NAME="$(echo "$AGENT_OS" | tr '[:upper:]' '[:lower:]')"
|
||
|
else
|
||
|
# for executing in non ci environment
|
||
|
CI_NAME="$(uname -s | tr '[:upper:]' '[:lower:]')"
|
||
|
fi
|
||
|
|
||
|
function installAndUpgrade()
|
||
|
{
|
||
|
arr=("$@")
|
||
|
for i in "${arr[@]}";
|
||
|
do
|
||
|
list_output=`brew list | grep $i`
|
||
|
outdated_output=`brew outdated | grep $i`
|
||
|
|
||
|
if [[ ! -z "$list_output" ]]; then
|
||
|
if [[ ! -z "$outdated_output" ]]; then
|
||
|
brew upgrade $i
|
||
|
fi
|
||
|
else
|
||
|
brew install $i
|
||
|
fi
|
||
|
done
|
||
|
}
|
||
|
|
||
|
# install osx deps for hyperion compile
|
||
|
if [[ $CI_NAME == 'osx' || $CI_NAME == 'darwin' ]]; then
|
||
|
echo "Install dependencies"
|
||
|
brew update
|
||
|
dependencies=("qt5" "python" "libusb" "cmake" "doxygen")
|
||
|
installAndUpgrade "${dependencies[@]}"
|
||
|
elif [[ $CI_NAME != 'linux' ]]; then
|
||
|
echo "Unsupported platform: $CI_NAME"
|
||
|
exit 5
|
||
|
fi
|