Skip to content

Commit e4d4ea9

Browse files
committed
fix style and remaining tests
1 parent 79b0b98 commit e4d4ea9

File tree

4 files changed

+17
-23
lines changed

4 files changed

+17
-23
lines changed

.github/workflows/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ env:
2727
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}
2828

2929
jobs:
30-
cocoapods:
30+
spm:
3131
name: spm
3232
runs-on: macOS-15
3333
env:
34+
OS: iOS
35+
DEVICE: iPhone 16
36+
DIR: config
3437
SPM: true
3538
LEGACY: false
36-
SWIFT_SUFFIX: ""
39+
SCHEME: ConfigExample
3740
TEST: true
3841
steps:
3942
- name: Checkout
@@ -45,6 +48,3 @@ jobs:
4548
xcrun simctl boot "iPhone 16"
4649
- name: Build Swift
4750
run: ./scripts/test.sh
48-
env:
49-
OS: iOS
50-
DEVICE: iPhone 16

.github/workflows/messaging.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,31 +27,29 @@ env:
2727
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}
2828

2929
jobs:
30-
cocoapods:
31-
name: cocoapods
30+
spm:
31+
name: spm
3232
runs-on: macOS-15
3333
env:
34-
SPM: false
34+
SPM: true
3535
LEGACY: false
3636
OS: iOS
3737
DEVICE: iPhone 16
3838
TEST: false
39+
DIR: messaging
3940
steps:
4041
- name: Checkout
4142
uses: actions/checkout@master
4243
- name: Setup
4344
run: |
4445
cd messaging
45-
gem install bundler
46-
bundle install
4746
gem install xcpretty
48-
bundle exec pod install --repo-update
4947
../scripts/install_prereqs/messaging.sh
5048
- name: Build ObjC
5149
run: ./scripts/test.sh
5250
env:
53-
SWIFT_SUFFIX: ""
51+
SCHEME: MessagingExample
5452
- name: Build Swift
5553
run: ./scripts/test.sh
5654
env:
57-
SWIFT_SUFFIX: Swift
55+
SCHEME: MessagingExampleSwift

.github/workflows/performance.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,30 +31,28 @@ env:
3131
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}
3232

3333
jobs:
34-
cocoapods:
35-
name: cocoapods
34+
spm:
35+
name: spm
3636
runs-on: macOS-15
3737
env:
38-
SPM: false
38+
SPM: true
3939
LEGACY: false
4040
OS: iOS
4141
DEVICE: iPhone 16
4242
TEST: true
43+
DIR: performance
44+
SCHEME: PerformanceExampleSwift
4345
steps:
4446
- name: Checkout
4547
uses: actions/checkout@master
4648
- name: Setup
4749
run: |
4850
cd performance
49-
gem install bundler
50-
bundle install
5151
gem install xcpretty
52-
bundle exec pod install --repo-update
5352
../scripts/install_prereqs/performance.sh
5453
- name: Build Swift
5554
run: ./scripts/test.sh
56-
env:
57-
SWIFT_SUFFIX: Swift
55+
5856
spm:
5957
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
6058
runs-on: macOS-15

inappmessaging/InAppMessagingExampleSwift/AppDelegate.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,4 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3232
FirebaseApp.configure()
3333
return true
3434
}
35-
36-
3735
}

0 commit comments

Comments
 (0)