From dbe2eeabdecf5149ad41cf410e2870098cde5bd9 Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Wed, 19 Feb 2020 20:38:15 -0600 Subject: [PATCH] Disable macOS code signing. The Release configuration defaults to requiring it. --- utils/travis/steps/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/travis/steps/script.sh b/utils/travis/steps/script.sh index 55b4ef0fa81..2467917b9fd 100755 --- a/utils/travis/steps/script.sh +++ b/utils/travis/steps/script.sh @@ -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=$?