Skip to content

[MOB-12851]: Add passing SDK version to the native SDK support #181

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

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 11 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ orbs:
android: circleci/[email protected]

jobs:

test_android:
test_android:
working_directory: ~/project
executor:
name: android/android-machine
Expand Down Expand Up @@ -34,7 +33,7 @@ jobs:
- run:
name: Install Build Tools v30.0.3
working_directory: example
command: sdkmanager "build-tools;30.0.3"
command: sdkmanager "build-tools;30.0.3"
- android/start-emulator-and-run-tests:
run-tests-working-directory: example/platforms/android
system-image: system-images;android-30;google_apis;x86
Expand All @@ -45,10 +44,10 @@ jobs:
working-directory: example/platforms/android
test-command: ./gradlew test

test_ios:
test_ios:
working_directory: ~/project
macos:
xcode: 13.3.0
xcode: 13.4.1
steps:
- checkout:
path: ~/project
Expand Down Expand Up @@ -77,14 +76,14 @@ jobs:
name: Run Tests
working_directory: example/platforms/ios
command: |
xcodebuild -allowProvisioningUpdates \
-workspace InstabugExample.xcworkspace \
-scheme InstabugExample \
-sdk iphonesimulator \
-destination 'name=iPhone 12 Pro Max' \
test | xcpretty
xcodebuild -allowProvisioningUpdates \
-workspace InstabugExample.xcworkspace \
-scheme InstabugExample \
-sdk iphonesimulator \
-destination 'name=iPhone 12 Pro Max' \
test | xcpretty

publish:
publish:
macos:
xcode: 13.3.0
working_directory: "~"
Expand Down
Loading