Make sure the build bot truthfully reports warnings.

master
dak180 2011-05-18 17:03:18 -04:00
parent 980921eaf6
commit 98502b64c3
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
# Note:
# This script is meant to be run from the root of the working copy.
#
# This just tries to build warzone. It does it twice because there are race conditions that may otherwise be triggered.
# This just tries to download the external libs. It does it twice because they may not download properly the first time.
# Config
wz_conf="StaticAnalyzer"
@ -17,8 +17,8 @@ if ! xcodeindex -project Warzone.xcodeproj -configuration "${wz_conf}"; then
fi
if ! xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Warzone" -configuration "${wz_conf}"; then
if ! xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Warzone" -configuration "${wz_conf}" -PBXBuildsContinueAfterErrors=NO; then
if ! xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Fetch Third Party Sources" -configuration "${wz_conf}"; then
if ! xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Fetch Third Party Sources" -configuration "${wz_conf}" -PBXBuildsContinueAfterErrors=NO; then
exit ${?}
fi
fi

View File

@ -3,7 +3,7 @@
# Note:
# This script is meant to be run from the root of the working copy.
#
# This script makes the actual .dmg and dSYM bundle. It is very important to keep the dSYM bundle with it's .dmg; it contains irreplaceable debug info (and, no another build even made right after will not work).
# This script builds Warzone and makes the actual .dmg and dSYM bundle. It is very important to keep the dSYM bundle with it's .dmg; it contains irreplaceable debug info (and, no another build even made right after will not work).
# Config