Реагирует на сбой сборки Native, AzureDevops и Fastlane ipa - PullRequest
0 голосов
/ 21 марта 2020

Я на самом деле новичок в AzureDevOps, и вот уже два дня я не могу найти решение для создания моего приложения на AzureDevOps.

Вот что я сделал до сих пор:

* Сертификат 1004 * p12 загружен и применяется в конвейере в соответствии с этим руководством Установите сертификат Apple

сертификат обеспечения загружен и применяется в конвейере Установите сертификат обеспечения Apple

Теперь, когда я пытаюсь собрать свое приложение iOS, используя fastlane:

  1. cd ios

  2. установка пакета

  3. fastlane beta

    • setup_ci (force = true)

    • тренажерный зал (схема: «приложение», рабочая область: «. / ios / workspace ', verbose: true)

Я ищу способ использования сертификата p12 и профилей обеспечения от Azure DevOps к моему сборка спортзала. После долгих поисков я обнаружил, что setup_ci делает это автоматически для меня.

Вот мой файл Fastlane

platform :ios do

    lane :beta do
        setup_ci(force=true)
        gym(
            scheme: 'AlfaCarpeting', workspace: './ios/AlfaCarpeting', verbose: true
        )
    end
end

А вот мой Azure файл yml конвейера:

# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
  - master

pool:
  vmImage: 'macOS-10.15'

variables:
    - group: React Native Variables

steps:
  - task: InstallAppleCertificate@2
    inputs:
      certSecureFile: Certificates.p12
      certPwd: $(P12Password)
      keychain: 'temp'
      deleteCert: true
    displayName: Install Apple Certificate

  - task: InstallAppleProvisioningProfile@1
    inputs:
      provisioningProfileLocation: 'secureFiles'
      provProfileSecureFile: 'alfaCarpetingBeta.mobileprovision'
    displayName: 'Install Apple Provisioning Profile'

  - task: NodeTool@0
    inputs:
      versionSpec: '10.x'
    displayName: 'Install Node.js'

  - script: |
      cd ios
      bundle install
      fastlane ios beta
    displayName: 'Build iOS'

Журналы из AzureDevops

[05:38:20]: $ set -o pipefail && xcodebuild -workspace ./AlfaCarpeting.xcworkspace -scheme AlfaCarpeting -destination 'generic/platform=iOS' -archivePath /Users/runner/Library/Developer/Xcode/Archives/2020-03-21/AlfaCarpeting\ 2020-03-21\ 05.38.20.xcarchive archive | tee /Users/runner/Library/Logs/gym/AlfaCarpeting-AlfaCarpeting.log | xcpretty
[05:38:22]: ▸ ❌  error: /Users/runner/runners/2.165.2/work/1/s/ios/Pods/Target Support Files/Pods-AlfaCarpeting/Pods-AlfaCarpeting.release.xcconfig: unable to open file (in target "AlfaCarpeting" in project "AlfaCarpeting") (in target 'AlfaCarpeting' from project 'AlfaCarpeting')
[05:38:22]: ▸ ❌  error: /Users/runner/runners/2.165.2/work/1/s/ios/Pods/Target Support Files/Pods-AlfaCarpeting/Pods-AlfaCarpeting.release.xcconfig: unable to open file (in target "AlfaCarpeting" in project "AlfaCarpeting") (in target 'AlfaCarpeting' from project 'AlfaCarpeting')
[05:38:22]: ▸ ❌  error: /Users/runner/runners/2.165.2/work/1/s/ios/Pods/Target Support Files/Pods-AlfaCarpeting/Pods-AlfaCarpeting.release.xcconfig: unable to open file (in target "AlfaCarpeting" in project "AlfaCarpeting") (in target 'AlfaCarpeting' from project 'AlfaCarpeting')
[05:38:22]: ▸ ❌  error: No profiles for 'com.AlfaCarpeting' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.AlfaCarpeting'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'AlfaCarpeting' from project 'AlfaCarpeting')
[05:38:22]: ▸ ** ARCHIVE FAILED **

1 Ответ

0 голосов
/ 03 мая 2020

Если вы откроете проект в xcode и перейдете к Настройки сборки -> Подпись , вам нужно настроить «Стиль подписи кода» на Ручная . Вот настройки, с которыми я закончил (примечание - я использую Fastlane Match для управления сертификатами и профилями):

enter image description here

...