Travisci: add tag and cron support (#211)

travis ci enhancement
[skip ci]
This commit is contained in:
redPanther 2016-08-31 10:12:58 +02:00 committed by GitHub
commit b9d1439f05
2 changed files with 17 additions and 7 deletions

View File

@ -4,7 +4,6 @@ cache:
- $HOME/brew-cache
notifications:
email: false
slack: hyperiondevteam:JHOhorlTVgcYKwT6Tj1nnGou
language: cpp
matrix:
include:

View File

@ -15,18 +15,29 @@ else
procs=4
fi
# Compile hyperion
# compile prepare
mkdir build || exit 1
cd build
cmake -DPLATFORM=x86-dev -DCMAKE_BUILD_TYPE=Debug .. || exit 2
make -j$(nproc) || exit 3
# Compile hyperion for tags
if [[ -n $TRAVIS_TAG ]]; then
cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Release .. || exit 2
make -j$(nproc) || exit 3
# Compile hyperion for cron
elif [[ $TRAVIS_EVENT_TYPE == 'cron' ]]; then
cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Debug .. || exit 4
make -j$(nproc) || exit 5
# Compile for PR
else
cmake -DPLATFORM=x86-dev -DCMAKE_BUILD_TYPE=Debug .. || exit 6
make -j$(nproc) || exit 7
fi
# Build the package on Linux
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
make -j$(nproc) package || exit 4
make -j$(nproc) package || exit 8
fi