Add workaround for CocoaPods 1.15.0 issues (#3427)

* Add workaround for Cocoapods 1.15.0 issues

* Actually call the "install CocoaPods 1.15.2" job

* Limit CocoaPods installation to Apple platforms

---------

Co-authored-by: Adam Gleitman <adgleitm@microsoft.com>
This commit is contained in:
Adam Gleitman 2024-02-15 10:56:34 -08:00 коммит произвёл GitHub
Родитель ccbc55eef5
Коммит c79572a157
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -79,6 +79,8 @@ jobs:
- template: templates/setup-repo-min-build.yml
- template: templates/apple-ensure-valid-cocoapods.yml
- script: |
yarn bundle:macos
workingDirectory: apps/fluent-tester
@ -122,6 +124,8 @@ jobs:
- template: templates/setup-repo-min-build.yml
- template: templates/apple-ensure-valid-cocoapods.yml
- script: |
yarn bundle:ios
workingDirectory: apps/fluent-tester

Просмотреть файл

@ -0,0 +1,10 @@
# Cocoapods 1.15.0 doesn't work with React Native
steps:
- task: CmdLine@2
displayName: Install Cocoapods 1.15.2 if needed
inputs:
script: |
POD_VERSION=$(pod --version)
if [ $POD_VERSION = 1.15.0 ]; then
gem install cocoapods -v 1.15.2
fi