mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Events
[skip ci]
This commit is contained in:
parent
c5beedf241
commit
f6a8c8eb01
@ -24,15 +24,20 @@ if [[ -n $TRAVIS_TAG ]]; then
|
|||||||
cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
||||||
make -j$(nproc) || exit 3
|
make -j$(nproc) || exit 3
|
||||||
|
|
||||||
# Compile hyperion for cron or PR
|
# Compile hyperion for cron
|
||||||
else
|
elif [[ $TRAVIS_EVENT_TYPE == 'cron' ]]; then
|
||||||
cmake -DPLATFORM=x86-dev -DCMAKE_BUILD_TYPE=Debug .. || exit 4
|
cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Debug .. || exit 4
|
||||||
make -j$(nproc) || exit 5
|
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
|
fi
|
||||||
|
|
||||||
# Build the package on Linux
|
# Build the package on Linux
|
||||||
|
|
||||||
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
||||||
make -j$(nproc) package || exit 6
|
make -j$(nproc) package || exit 8
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user