mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
9e5903e1aa
* rename platform rpi-pwm to rpi. remove original rpi platform install symlink to bin folder create effects folder for custom effects * fix osx jobs evaluation
43 lines
987 B
Bash
Executable File
43 lines
987 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# for executing in non travis environment
|
|
[ -z "$TRAVIS_OS_NAME" ] && TRAVIS_OS_NAME="$(uname -s | tr '[:upper:]' '[:lower:]')"
|
|
|
|
PLATFORM=x86
|
|
BUILD_TYPE=Debug
|
|
|
|
# Detect number of processor cores
|
|
# default is 4 jobs
|
|
if [[ "$TRAVIS_OS_NAME" == 'osx' || "$TRAVIS_OS_NAME" == 'darwin' ]]
|
|
then
|
|
JOBS=$(sysctl -n hw.ncpu)
|
|
PLATFORM=osx
|
|
elif [[ "$TRAVIS_OS_NAME" == 'linux' ]]
|
|
then
|
|
JOBS=$(nproc)
|
|
fi
|
|
|
|
# compile prepare
|
|
mkdir build || exit 1
|
|
cd build
|
|
|
|
# Compile hyperion for tags
|
|
[ -n "${TRAVIS_TAG:-}" ] && BUILD_TYPE=Release
|
|
|
|
# Compile hyperion for cron - take default settings
|
|
|
|
# Compile for PR (no tag and no cron)
|
|
[ "${TRAVIS_EVENT_TYPE:-}" != 'cron' -a -z "${TRAVIS_TAG:-}" ] && PLATFORM=${PLATFORM}-dev
|
|
|
|
cmake -DPLATFORM=$PLATFORM -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=/usr .. || exit 2
|
|
|
|
echo "compile jobs: ${JOBS:=4}"
|
|
make -j ${JOBS} || exit 3
|
|
|
|
# Build the package on Linux
|
|
if [[ $TRAVIS_OS_NAME == 'linux' ]]
|
|
then
|
|
make -j ${JOBS} package || exit 4
|
|
fi
|
|
|