Skip to content

Commit 79b0b98

Browse files
committed
fix iam and installations tests
1 parent 4991feb commit 79b0b98

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.github/workflows/inappmessaging.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ 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
36+
DIR: inappmessaging
3637
OS: iOS
3738
DEVICE: iPhone 16
3839
TEST: true
@@ -42,16 +43,13 @@ jobs:
4243
- name: Setup
4344
run: |
4445
cd inappmessaging
45-
gem install bundler
46-
bundle install
4746
gem install xcpretty
48-
bundle exec pod install --repo-update
4947
../scripts/install_prereqs/inappmessaging.sh
5048
- name: Build ObjC
5149
run: ./scripts/test.sh
5250
env:
53-
SWIFT_SUFFIX: ""
51+
SCHEME: InAppMessagingExample
5452
- name: Build Swift
5553
run: ./scripts/test.sh
5654
env:
57-
SWIFT_SUFFIX: Swift
55+
SCHEME: InAppMessagingExampleSwift

.github/workflows/installations.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: true
39+
DIR: installations
3940
steps:
4041
- name: Checkout
4142
uses: actions/checkout@master
4243
- name: Setup
4344
run: |
4445
cd installations
45-
gem install bundler
46-
bundle install
4746
gem install xcpretty
48-
bundle exec pod install --repo-update
4947
../scripts/install_prereqs/installations.sh
5048
- name: Build ObjC
5149
run: ./scripts/test.sh
5250
env:
53-
SWIFT_SUFFIX: ""
51+
SCHEME: InstallationsExampleSwift
5452
- name: Build Swift
5553
run: ./scripts/test.sh
5654
env:
57-
SWIFT_SUFFIX: Swift
55+
SCHEME: InstallationsExample

0 commit comments

Comments
 (0)