Skip to content

Commit

Permalink
Disable code signing in CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
reuben committed Jul 21, 2020
1 parent fadd25a commit 386bb80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taskcluster/tc-build-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 386bb80

Please sign in to comment.