Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update example apps to react native 0.67 [CRNS-538] #1199

Merged
merged 20 commits into from
Mar 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
cb1f23b
feat(sampleApp): add clean scripts to yarn
santhoshvai Mar 9, 2022
772028d
feat(sampleApp): update to react-native 0.67
santhoshvai Mar 9, 2022
2e14dab
chore: remove nativeMessaging example app
santhoshvai Mar 9, 2022
316e92b
feat(typescriptMessaging): update to react-native 0.67 and add clean …
santhoshvai Mar 9, 2022
8ed34b1
feat: introduce gemfile, ruby-version etc to force cocoapods version …
santhoshvai Mar 11, 2022
4785318
chore: adapt sample-distribution's fastlane to use the new bundler path
santhoshvai Mar 11, 2022
ba9937a
chore: temporarily make sample distribution workflow to run on 0.67 b…
santhoshvai Mar 11, 2022
5b65710
fix: fastlane's xcodeproj path was pointing to a wrong location
santhoshvai Mar 11, 2022
c0e4452
chore: rever sample-distribution to run on develop only
santhoshvai Mar 11, 2022
aed4eb8
Merge branch 'develop' into santhosh/update-example-apps-0.67-crns-538
santhoshvai Mar 11, 2022
e5f3067
fix: remove bundle install from the bootstrap ci package which is sup…
santhoshvai Mar 11, 2022
053e66c
feat(workflow): install ruby from version from what is specified in t…
santhoshvai Mar 11, 2022
90e081a
chore: make sample distribution workfllow run temporarily on 0.67 bra…
santhoshvai Mar 11, 2022
ae922f8
fix(workflow): execute bundle install after installing ruby
santhoshvai Mar 11, 2022
94fd27f
feat(workflow): add one more step for iOS pod setup
santhoshvai Mar 11, 2022
1ea194c
fix: xcode project path was incorrect in fast version bump
santhoshvai Mar 11, 2022
c601e0c
fix: manually update ios version as the last version bump from fastla…
santhoshvai Mar 11, 2022
0358371
fix: syntax error in fastfile caused the deployment to fail
santhoshvai Mar 12, 2022
e2d7e19
[fastlane][ios] Bump version [skip ci]
Mar 12, 2022
33f108d
chore: revert the change to make sample distribution run for a non de…
santhoshvai Mar 12, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/sample-distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ jobs:
- uses: actions/checkout@v2
with:
token: ${{ secrets.VERSION_BUMP_TOKEN }}
- name: Install RubyGems
run: |
cd examples/SampleApp/ios
bundle update --bundler
- name: Install Ruby and Gems
uses: ruby/setup-ruby@v1
with:
working-directory: examples/SampleApp
bundler-cache: true
- name: RN setup
uses: nick-invision/retry@v2
with:
Expand All @@ -24,9 +25,15 @@ jobs:
yarn && yarn bootstrap-ci;
cd package/native-package
yarn;
cd ../../examples/SampleApp
- name: iOS Pods setup
uses: nick-invision/retry@v2
with:
timeout_minutes: 30
max_attempts: 3
command: |
cd examples/SampleApp
cd ios
pod update RCT-Folly --no-repo-update && pod install
bundle exec pod install
- name: Build and release Testflight QA
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
Expand All @@ -35,7 +42,7 @@ jobs:
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
run: |
cd examples/SampleApp/ios
cd examples/SampleApp
bundle exec fastlane deploy_to_testflight_qa

build_and_deploy_android_s3:
Expand Down
6 changes: 0 additions & 6 deletions examples/NativeMessaging/.buckconfig

This file was deleted.

189 changes: 0 additions & 189 deletions examples/NativeMessaging/.eslintrc.json

This file was deleted.

63 changes: 0 additions & 63 deletions examples/NativeMessaging/.flowconfig

This file was deleted.

3 changes: 0 additions & 3 deletions examples/NativeMessaging/.gitattributes

This file was deleted.

59 changes: 0 additions & 59 deletions examples/NativeMessaging/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion examples/NativeMessaging/.watchmanconfig

This file was deleted.

Loading