Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 1 addition & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,11 @@ jobs:
run: sudo xcode-select -s '${{ env.XCODE }}/Contents/Developer'
- name: Show Xcode Version
run: xcodebuild -version
- name: Show CocoaPods Version
run: pod --version
- name: Restore Pods
uses: actions/cache@v4
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install Dependences
run: |
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 && \
xcodebuild \
-workspace 'Sora.xcworkspace' \
-project 'Sora.xcodeproj' \
-scheme 'Sora' \
-sdk ${{ env.XCODE_SDK }} \
-configuration Release \
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
- @zztkm
- [UPDATE] フォーマッターとリンターの実行を Makefile に移行したため、不要になった lint-format.sh を削除
- @zztkm
- [UPDATE] 依存管理を CocoaPods から Swift Package Manager に移行したため Podfile を削除する
- GitHub Actions から CocoaPods 関連処理を削除
- @zztkm
- [ADD] swift-format と SwiftLint 実行用の Makefile を追加する
- lint-format.sh で実行していたコマンドを個別に実行できるようにした
- @zztkm
Expand Down
9 changes: 0 additions & 9 deletions Podfile

This file was deleted.

Loading