mirror of
https://github.com/jellyfin/jellyfin-build.git
synced 2024-11-30 09:30:45 +00:00
Don't retry builds, just report it
This commit is contained in:
parent
fa3d41bcdd
commit
be15e5a74a
@ -66,12 +66,10 @@ platforms=(
|
||||
)
|
||||
for platform in ${platforms[@]}; do
|
||||
./build ${reponame} ${platform} &>${curdir}/../../logs/build-test/${platform}.log
|
||||
if [[ ! -f $( find bin/${reponame}/${platform}/ -type f | head -1 ) ]]; then
|
||||
# Try to build each one again if it fails the first time
|
||||
./build ${reponame} ${platform}
|
||||
fi
|
||||
if [[ ! -f $( find bin/${reponame}/${platform}/ -type f | head -1 ) ]]; then
|
||||
echo "*** FAILED TO BUILD PLATFORM ${platform}"
|
||||
if [[ $? -gt 0 ]]; then
|
||||
echo "FAILED TO BUILD PLATFORM ${platform}"
|
||||
else
|
||||
echo "OK ${platform}"
|
||||
fi
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user