Github actions проблема сборки iOS с использованием xcode
Я пытаюсь создать приложение для iOS, используя xcode в действиях github. В настоящее время я получаю странную ошибку.
Ниже мой файл спецификации сборки
name: IOS
on:
push:
branches: [ cicd-test ]
jobs:
test:
name: Test
runs-on: macos-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=13.2.2,name=iPhone 11 Pro Max']
steps:
- name: Checkout
uses: actions/checkout@master
- name: Build
run: |
npm install
sudo gem install cocoapods
cd ios && pod install
sudo xcodebuild build -project uniweed.xcodeproj -scheme uniweed CODE_SIGN_IDENTITY="NO" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
Следующая ошибка, которую я получаю на этапе сборки действий github
/Users/runner/work/mob-app/mob-app/node_modules/bugsnag-react-native/cocoa/vendor/bugsnag-cocoa/Source/KSCrash/Source/KSCrash/Recording/Sentry/BSG_KSCrashSentry_MachException.c:209:20: error: result of comparison against a string literal is unspecified (use an explicit string comparison function instead) [-Werror,-Wstring-compare]
if (threadName == kThreadSecondary) {
^ ~~~~~~~~~~~~~~~~
1 error generated.
warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'BugsnagReactNative' from project 'BugsnagReactNative')
Error: Process completed with exit code 65.