We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbc8cd commit 509b284Copy full SHA for 509b284
.github/workflows/build.yml
@@ -35,7 +35,11 @@ jobs:
35
rm Podfile && mv Podfile.dev Podfile
36
pod repo update
37
pod install
38
- nm ./Pods/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC | grep _kVTVideoEncoderSpecification_RequiredLowLatency >/dev/null 2>&1 && echo 'Non-public API' 2>/dev/null && exit 1; rm -rf Pods/ Podfile.lock Sora.xcworkspace/
+ if nm ./Pods/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC | grep _kVTVideoEncoderSpecification_RequiredLowLatency >/dev/null 2>&1; then
39
+ echo 'Error: Non-public API detected in WebRTC framework.'
40
+ exit 1
41
+ fi
42
+ rm -rf Pods/ Podfile.lock Sora.xcworkspace/
43
- name: Build Xcode Project
44
run: |
45
set -o pipefail && \
0 commit comments