Disable macOS code signing.

The Release configuration defaults to requiring it.
This commit is contained in:
Pentarctagon 2020-02-19 20:38:15 -06:00 committed by Pentarctagon
parent 598310579c
commit dbe2eeabde

View file

@ -12,7 +12,7 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
export CCACHE_MAXSIZE=500M
export CCACHE_COMPILERCHECK=content
xcodebuild GCC_GENERATE_DEBUGGING_SYMBOLS=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration "$OPT"
xcodebuild CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration "$OPT"
BUILD_RET=$?