From 47685f059f8d81fc0e44ecfd8409b5683b109813 Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 21 Jul 2020 23:52:29 +0200 Subject: [PATCH] Disable code signing in CI builds --- taskcluster/tc-build-utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taskcluster/tc-build-utils.sh b/taskcluster/tc-build-utils.sh index 349205f5..ac0bd39e 100755 --- a/taskcluster/tc-build-utils.sh +++ b/taskcluster/tc-build-utils.sh @@ -323,10 +323,10 @@ do_deepspeech_ios_framework_build() cd ${DS_DSDIR}/native_client/swift case $arch in "--x86_64") - xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch x86_64 -sdk "iphonesimulator" -derivedDataPath DerivedData + xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch x86_64 -sdk "iphonesimulator" -derivedDataPath DerivedData CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ;; "--arm64") - xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch arm64 -sdk "iphoneos" -derivedDataPath DerivedData + xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch arm64 -sdk "iphoneos" -derivedDataPath DerivedData CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ;; esac }