-
Notifications
You must be signed in to change notification settings - Fork 14
Sample / 0.74.1 → 0.75.5 #269
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
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
24f0157
0.75.5
markmur c1f40f5
Harden dependencies
markmur 0e209a1
Fix lint error in sample
markmur 59a3cb5
Update CI step
markmur 7964d5a
Add Android tools to AndroidManifest.template
markmur 1ca1db4
Run manifest generation
markmur 78653e9
Add timeouts to steps
markmur a9b7437
Improve cache key for cocoapods - include package.json and lockfile i…
markmur 599cf0a
Strip surrounding quotes on env value
markmur 8dbda6a
Replace xcpretty with xcbeautify, format test/build commands
markmur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,28 +1,45 @@ | ||
| name: Cocoapods | ||
| description: Install cocoapods for sample app | ||
|
|
||
| inputs: | ||
| ruby-version: | ||
| description: 'Ruby version to use' | ||
| required: false | ||
| default: '3.1.2' | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - name: Setup Ruby | ||
| uses: ruby/setup-ruby@829114fc20da43a41d27359103ec7a63020954d4 # v1.255.0 | ||
| with: | ||
| bundler-cache: true | ||
| ruby-version: ${{ inputs.ruby-version }} | ||
| working-directory: sample | ||
|
|
||
| - name: Cache cocoapods | ||
| id: cache-cocoapods | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: | | ||
| **/ios/Pods | ||
| key: ${{ runner.os }}-cocoapods-${{ hashFiles('sample/ios/Podfile.lock') }} | ||
| key: ${{ runner.os }}-cocoapods-ruby-${{ inputs.ruby-version }}-${{ hashFiles('sample/ios/Podfile.lock', 'sample/Gemfile.lock', 'package.json', 'sample/package.json', 'modules/@shopify/checkout-sheet-kit/package.json', 'yarn.lock') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-cocoapods-ruby-${{ inputs.ruby-version }}-${{ hashFiles('sample/ios/Podfile.lock', 'sample/package.json', 'yarn.lock') }} | ||
| ${{ runner.os }}-cocoapods-ruby-${{ inputs.ruby-version }}-${{ hashFiles('sample/ios/Podfile.lock') }} | ||
| ${{ runner.os }}-cocoapods-ruby-${{ inputs.ruby-version }}- | ||
| ${{ runner.os }}-cocoapods- | ||
|
|
||
| - name: Install cocoapods | ||
| if: steps.cocoapods-cache.outputs.cache-hit != 'true' | ||
| if: steps.cache-cocoapods.outputs.cache-hit != 'true' | ||
| shell: bash | ||
| env: | ||
| NO_FLIPPER: "1" | ||
| run: | | ||
| set -euo pipefail | ||
| ROOT=$(pwd) | ||
| cd sample | ||
| bundle install | ||
| cd ios | ||
| NO_FLIPPER=1 bundle exec pod install | ||
| NO_FLIPPER=1 bundle exec pod install --no-repo-update | ||
| cd $ROOT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.