File tree Expand file tree Collapse file tree 2 files changed +2
-18
lines changed
Expand file tree Collapse file tree 2 files changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -21,28 +21,11 @@ jobs:
2121 run : sudo xcode-select -s '${{ env.XCODE }}/Contents/Developer'
2222 - name : Show Xcode Version
2323 run : xcodebuild -version
24- - name : Show CocoaPods Version
25- run : pod --version
26- - name : Restore Pods
27- uses : actions/cache@v4
28- with :
29- path : Pods
30- key : ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
31- restore-keys : |
32- ${{ runner.os }}-pods-
33- - name : Install Dependences
34- run : |
35- pod repo update
36- pod install
37- if nm ./Pods/WebRTC/WebRTC.xcframework/ios-arm64/WebRTC.framework/WebRTC | grep _kVTVideoEncoderSpecification_RequiredLowLatency >/dev/null 2>&1; then
38- echo 'Error: Non-public API detected in WebRTC framework.'
39- exit 1
40- fi
4124 - name : Build Xcode Project
4225 run : |
4326 set -o pipefail && \
4427 xcodebuild \
45- -workspace 'Sora.xcworkspace ' \
28+ -project 'Sora.xcodeproj ' \
4629 -scheme 'Sora' \
4730 -sdk ${{ env.XCODE_SDK }} \
4831 -configuration Release \
Original file line number Diff line number Diff line change 4646- [ UPDATE] フォーマッターとリンターの実行を Makefile に移行したため、不要になった lint-format.sh を削除
4747 - @zztkm
4848- [ UPDATE] 依存管理を CocoaPods から Swift Package Manager に移行したため Podfile を削除する
49+ - GitHub Actions から CocoaPods 関連処理を削除
4950 - @zztkm
5051- [ ADD] swift-format と SwiftLint 実行用の Makefile を追加する
5152 - lint-format.sh で実行していたコマンドを個別に実行できるようにした
You can’t perform that action at this time.
0 commit comments