Skip to content

Merge pull request #55 from ant-media/pass_degradation_before_creatin… #9

Merge pull request #55 from ant-media/pass_degradation_before_creatin…

Merge pull request #55 from ant-media/pass_degradation_before_creatin… #9

name: iOS Build and Test
on: push
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.3'
- name: Build WebRTCiOSSDK
run: xcodebuild -scheme WebRTCiOSSDK -configuration Release -destination "generic/platform=iOS" ARCHS=arm64 CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO build
- name: Test WebRTCiOSSDK
run: xcodebuild clean -scheme WebRTCiOSSDK -destination "platform=iOS Simulator,name=iPhone 15" test
- name: Build WebRTCSampleApp
run: xcodebuild -scheme WebRTC-Sample-App -configuration Release -destination "generic/platform=iOS" ARCHS=arm64 CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO build