Skip to content

Commit

Permalink
Merge pull request #224 from shiguredo/feature/reject-non-public-api-…
Browse files Browse the repository at this point in the history
…binary

非公開 API が含まれていた場合エラーにする
  • Loading branch information
torikizi authored Jan 24, 2025
2 parents 3beaedc + fc0aa54 commit 20117c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
rm Podfile && mv Podfile.dev Podfile
pod repo update
pod install
if nm ./Pods/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC | grep _kVTVideoEncoderSpecification_RequiredLowLatency >/dev/null 2>&1; then
echo 'Error: Non-public API detected in WebRTC framework.'
exit 1
fi
- name: Build Xcode Project
run: |
set -o pipefail && \
Expand Down

0 comments on commit 20117c2

Please sign in to comment.