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

AMP-85465 Objective-C v2 app #282

Merged
merged 4 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
6 changes: 5 additions & 1 deletion .github/workflows/ampli-merge-check.ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
working-directory: ./ios/swift/v2/AmpliSwiftSampleApp
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}}

- name: (iOS Objective-C) Check the Data branch is merged before merging the Git branch
- name: (iOS Objective-C V1) Check the Data branch is merged before merging the Git branch
working-directory: ./ios/objective-c/v1/AmpliObjectiveCSampleApp
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}}

- name: (iOS Objective-C V2) Check the Data branch is merged before merging the Git branch
working-directory: ./ios/objective-c/v2/AmpliObjectiveCSampleApp
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}}
10 changes: 10 additions & 0 deletions .github/workflows/ci-build-ios-v2-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI - iOS V2 Tests
on:
pull_request:
paths:
- 'ios/objective-c/v2/**'
- 'ios/swift/v2/**'

jobs:
Expand All @@ -28,3 +29,12 @@ jobs:
-scheme AmpliSwiftSampleAppTests \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 14,OS=16.2'

- name: Objective-C iOS Tests
working-directory: ./ios/objective-c/v2/AmpliObjectiveCSampleApp
run: |
xcodebuild test \
-project AmpliObjectiveCSampleApp.xcodeproj \
-scheme AmpliObjectiveCSampleApp \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 14,OS=16.2'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ See subproject README's for details on each platform.

## iOS V2
#### [ios/swift](ios/swift/v2/AmpliSwiftSampleApp)
#### [ios/objective-c](ios/objective-c/v2/AmpliObjectiveCSampleApp)

## Android V1
#### [android/kotlin](android/kotlin/v1/AmpliApp)
Expand Down
Loading
Loading