Skip to content

Commit

Permalink
Merge branch 'next' into je/plat-12916-dsym
Browse files Browse the repository at this point in the history
  • Loading branch information
joshedney committed Nov 1, 2024
2 parents 2c7f438 + 0d4bfe5 commit f9243b7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 deletions.
1 change: 1 addition & 0 deletions features/base-fixtures/rn0_69/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ source 'https://rubygems.org'
ruby '>= 2.6.10'

gem 'cocoapods', '1.14.3'
gem 'xcodeproj', '< 1.26.0'
1 change: 1 addition & 0 deletions features/base-fixtures/rn0_70/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ source 'https://rubygems.org'
ruby '>= 2.6.10'

gem 'cocoapods', '1.14.3'
gem 'xcodeproj', '< 1.26.0'
1 change: 1 addition & 0 deletions features/base-fixtures/rn0_72/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ source 'https://rubygems.org'
ruby '>= 2.6.10'

gem 'cocoapods', '1.14.3'
gem 'xcodeproj', '< 1.26.0'
30 changes: 18 additions & 12 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,16 @@ features/base-fixtures/rn0_69/android:

.PHONY: features/base-fixtures/rn0_69/ios
features/base-fixtures/rn0_69/ios:
cd $@/../ && npm i && bundle install
cd $@ && pod install
cd $@/../ && npm i
cd $@ && bundle install
cd $@ && bundle exec pod install --repo-update
cd $@ && xcodebuild -workspace rn0_69.xcworkspace -scheme rn0_69 -configuration Release -sdk iphoneos build

.PHONY: features/base-fixtures/rn0_69/ios/archive
features/base-fixtures/rn0_69/ios/archive:
cd features/base-fixtures/rn0_69/ios/../ && npm i && bundle install
cd features/base-fixtures/rn0_69/ios/ && pod install
cd features/base-fixtures/rn0_69/ && npm i
cd features/base-fixtures/rn0_69/ios/ && bundle install
cd features/base-fixtures/rn0_69/ios/ && bundle exec pod install --repo-update
cd features/base-fixtures/rn0_69/ios/ && xcrun xcodebuild -scheme rn0_69 -workspace rn0_69.xcworkspace -configuration Release -archivePath "../rn0_69.xcarchive" -allowProvisioningUpdates archive

.PHONY: features/base-fixtures/rn0_70/android
Expand All @@ -117,14 +119,16 @@ features/base-fixtures/rn0_70/android:

.PHONY: features/base-fixtures/rn0_70/ios
features/base-fixtures/rn0_70/ios:
cd $@/../ && npm i && bundle install
cd $@ && pod install
cd $@/../ && npm i
cd $@ && bundle install
cd $@ && bundle exec pod install --repo-update
cd $@ && xcodebuild -workspace rn0_70.xcworkspace -scheme rn0_70 -configuration Release -sdk iphoneos build

.PHONY: features/base-fixtures/rn0_70/ios/archive
features/base-fixtures/rn0_70/ios/archive:
cd features/base-fixtures/rn0_70/ios/../ && npm i && bundle install
cd features/base-fixtures/rn0_70/ios/ && pod install
cd features/base-fixtures/rn0_70/ && npm i
cd features/base-fixtures/rn0_70/ios/ && bundle install
cd features/base-fixtures/rn0_70/ios/ && bundle exec pod install --repo-update
cd features/base-fixtures/rn0_70/ios/ && xcrun xcodebuild -scheme rn0_70 -workspace rn0_70.xcworkspace -configuration Release -archivePath "../rn0_70.xcarchive" -allowProvisioningUpdates archive

.PHONY: features/base-fixtures/rn0_72/android
Expand All @@ -134,14 +138,16 @@ features/base-fixtures/rn0_72/android:

.PHONY: features/base-fixtures/rn0_72/ios
features/base-fixtures/rn0_72/ios:
cd $@/../ && npm i && bundle install
cd $@ && pod install
cd $@/../ && npm i
cd $@ && bundle install
cd $@ && bundle exec pod install --repo-update
cd $@ && xcodebuild -workspace rn0_72.xcworkspace -scheme rn0_72 -configuration Release -sdk iphoneos build

.PHONY: features/base-fixtures/rn0_72/ios/archive
features/base-fixtures/rn0_72/ios/archive:
cd features/base-fixtures/rn0_72/ios/../ && npm i && bundle install
cd features/base-fixtures/rn0_72/ios/ && pod install
cd features/base-fixtures/rn0_72/ && npm i
cd features/base-fixtures/rn0_72/ios && bundle install
cd features/base-fixtures/rn0_72/ios/ && bundle exec pod install --repo-update
cd features/base-fixtures/rn0_72/ios/ && xcrun xcodebuild -scheme rn0_72 -workspace rn0_72.xcworkspace -configuration Release -archivePath "../rn0_72.xcarchive" -allowProvisioningUpdates archive

.PHONY: features/base-fixtures/js-webpack4
Expand Down

0 comments on commit f9243b7

Please sign in to comment.