Skip to content

Commit

Permalink
clean build & remove ARCHS parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mekya committed Jun 1, 2024
1 parent 1bdb9d3 commit 19793e2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ios-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ jobs:
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.3'

- name: Install xcpretty
run: gem install xcpretty

- name: Install simulator
run: xcversion simulators --install='iOS 14.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 -scheme WebRTCiOSSDK -destination "platform=iOS Simulator,name=iPhone 15" ARCHS=arm64 test
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

0 comments on commit 19793e2

Please sign in to comment.