Skip to content

Commit fd311ee

Browse files
authored
Update ios.yml
Adding `CODE_SIGNING_ALLOWED=NO` to `xcodebuild` since we're building to run tests only.
1 parent 062006b commit fd311ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
if [ $scheme = default ]; then scheme=$(cat default); fi
2626
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
2727
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
28-
xcodebuild test -scheme "$scheme" -allowProvisioningUpdates -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,OS=$os,name=$device"
28+
xcodebuild test -scheme "$scheme" CODE_SIGNING_ALLOWED=NO -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,OS=$os,name=$device"

0 commit comments

Comments
 (0)