Skip to content

Commit

Permalink
fix iam and installations tests
Browse files Browse the repository at this point in the history
  • Loading branch information
morganchen12 committed Jan 28, 2025
1 parent 4991feb commit 79b0b98
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/inappmessaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
spm:
name: spm
runs-on: macOS-15
env:
SPM: false
SPM: true
LEGACY: false
DIR: inappmessaging
OS: iOS
DEVICE: iPhone 16
TEST: true
Expand All @@ -42,16 +43,13 @@ jobs:
- 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
14 changes: 6 additions & 8 deletions .github/workflows/installations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,29 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
spm:
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

0 comments on commit 79b0b98

Please sign in to comment.