-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Move non-legacy examples to Swift Package Manager #1666
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
base: main
Are you sure you want to change the base?
Conversation
ecc3c6f
to
3fbefa2
Compare
c1950a9
to
8ac405a
Compare
bacbb70
to
03f0619
Compare
Closing and re-opening to restart CI |
.github/workflows/inappmessaging.yml
Outdated
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
DIR: inappmessaging | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd inappmessaging | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/inappmessaging.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: InAppMessagingExample | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: InAppMessagingExampleSwift |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: true | ||
DIR: installations | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd installations | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/installations.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: InstallationsExampleSwift | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: InstallationsExample |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: false | ||
DIR: messaging | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd messaging | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/messaging.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: MessagingExample | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: MessagingExampleSwift |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
.github/workflows/inappmessaging.yml
Outdated
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
DIR: inappmessaging | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd inappmessaging | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/inappmessaging.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: InAppMessagingExample | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: InAppMessagingExampleSwift |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: true | ||
DIR: installations | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd installations | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/installations.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: InstallationsExampleSwift | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: InstallationsExample |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
name: spm | ||
runs-on: macOS-15 | ||
env: | ||
SPM: false | ||
SPM: true | ||
LEGACY: false | ||
OS: iOS | ||
DEVICE: iPhone 16 | ||
TEST: false | ||
DIR: messaging | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Setup | ||
run: | | ||
cd messaging | ||
gem install bundler | ||
bundle install | ||
gem install xcpretty | ||
bundle exec pod install --repo-update | ||
../scripts/install_prereqs/messaging.sh | ||
- name: Build ObjC | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: "" | ||
SCHEME: MessagingExample | ||
- name: Build Swift | ||
run: ./scripts/test.sh | ||
env: | ||
SWIFT_SUFFIX: Swift | ||
SCHEME: MessagingExampleSwift |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
.github/workflows/analytics.yml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why delete analytics workflow file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't remember. Probably an accident.
refactor(storage): Move storage qs to root of storage directory
fix(infra): Update scripts/test.sh to dynamically get scheme
This reverts commit 7f27d68.
Testing CI, do not submit this PR.