-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: tl-daven-gomes <[email protected]> Co-authored-by: Daven Gomes <[email protected]>
- Loading branch information
1 parent
cb6f371
commit b961748
Showing
45 changed files
with
2,787 additions
and
2,296 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ orbs: | |
node: circleci/[email protected] | ||
android: circleci/[email protected] | ||
rn: react-native-community/[email protected] | ||
macos: circleci/[email protected] | ||
|
||
executors: | ||
base_executor: | ||
|
@@ -89,7 +90,7 @@ jobs: | |
- android/create-avd: | ||
avd-name: test | ||
install: true | ||
system-image: "system-images;android-23;default;x86" | ||
system-image: "system-images;android-24;default;x86" | ||
- android/start-emulator: | ||
avd-name: test | ||
post-emulator-launch-assemble-command: "" # this can now be empty as the build was done in build-all step | ||
|
@@ -114,12 +115,16 @@ jobs: | |
build-ios-demo-app: | ||
macos: | ||
xcode: 15.0.1 | ||
xcode: 15.2.0 | ||
resource_class: macos.m1.large.gen1 | ||
working_directory: /Users/distiller/project | ||
|
||
steps: | ||
- checkout | ||
- macos/add-uitest-permissions | ||
- macos/add-permission: | ||
bundle-id: "com.apple.CoreSimulator.SimulatorTrampoline" | ||
permission-type: "kTCCServiceMicrophone" | ||
- run: | ||
name: Setup quick-start service | ||
command: | | ||
|
@@ -142,22 +147,24 @@ jobs: | |
yarn build | ||
yalc publish | ||
- run: | ||
name: Install DemoApp dependencies | ||
name: Install DemoApp dependencies and start server | ||
command: | | ||
cd /Users/distiller/project/DemoApp | ||
npx yalc add rn-truelayer-payments-sdk | ||
yarn install | ||
yarn start | ||
background: true | ||
- run: | ||
name: build ios | ||
command: | | ||
cd /Users/distiller/project/DemoApp/ios | ||
bundle install | ||
gem install cocoapods | ||
bundle exec pod install | ||
RCT_NEW_ARCH_ENABLED=1 bundle exec pod install | ||
cd /Users/distiller/project/DemoApp | ||
yarn react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios | ||
cd ios | ||
xcodebuild -workspace DemoApp.xcworkspace -scheme DemoAppUITests -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0.1' -configuration Debug test | ||
xcodebuild -workspace DemoApp.xcworkspace -scheme DemoAppUITests -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.2' -configuration Debug test | ||
workflows: | ||
version: 2 | ||
|
This file contains 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 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 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 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 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 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.