Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
51 changes: 26 additions & 25 deletions .github/workflows/abtesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,31 +31,32 @@ env:
SAMPLE: ABTesting

jobs:
cocoapods:
name: cocoapods
runs-on: macOS-15
env:
SPM: false
TEST: true
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup
run: |
cd abtesting/LegacyABTestingQuickstart
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
cd ..
../scripts/install_prereqs/abtesting.sh
- name: Build Swift
run: ./scripts/test.sh
env:
LEGACY: true
SWIFT_SUFFIX: ""
OS: iOS
DEVICE: iPhone 16
# TODO(ncooke3): Consider synthesizing Podfile for CocoaPods based test.
# cocoapods:
# name: cocoapods
# runs-on: macOS-15
# env:
# SPM: false
# TEST: true
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Setup
# run: |
# cd abtesting/LegacyABTestingQuickstart
# gem install bundler
# bundle install
# gem install xcpretty
# bundle exec pod install --repo-update
# cd ..
# ../scripts/install_prereqs/abtesting.sh
# - name: Build Swift
# run: ./scripts/test.sh
# env:
# LEGACY: true
# SWIFT_SUFFIX: ""
# OS: iOS
# DEVICE: iPhone 16
spm:
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
runs-on: macOS-15
Expand Down
51 changes: 26 additions & 25 deletions .github/workflows/crashlytics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,32 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
runs-on: macOS-15
env:
SPM: false
LEGACY: true
OS: iOS
DEVICE: iPhone 16
TEST: true
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup
run: |
cd crashlytics/LegacyCrashlyticsQuickstart
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
cd ..
../scripts/install_prereqs/crashlytics.sh
- name: Build Swift
run: ./scripts/test.sh
env:
SWIFT_SUFFIX: Swift
# TODO(ncooke3): Consider synthesizing Podfile for CocoaPods based test.
# cocoapods:
# name: cocoapods
# runs-on: macOS-15
# env:
# SPM: false
# LEGACY: true
# OS: iOS
# DEVICE: iPhone 16
# TEST: true
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Setup
# run: |
# cd crashlytics/LegacyCrashlyticsQuickstart
# gem install bundler
# bundle install
# gem install xcpretty
# bundle exec pod install --repo-update
# cd ..
# ../scripts/install_prereqs/crashlytics.sh
# - name: Build Swift
# run: ./scripts/test.sh
# env:
# SWIFT_SUFFIX: Swift
spm:
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
runs-on: macOS-15
Expand Down
51 changes: 26 additions & 25 deletions .github/workflows/storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,32 @@ env:
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }}

jobs:
cocoapods:
name: cocoapods
runs-on: macOS-15
env:
SPM: false
LEGACY: true
OS: iOS
DEVICE: iPhone 16
TEST: true
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup
run: |
cd storage/LegacyStorageQuickstart
gem install bundler
bundle install
gem install xcpretty
bundle exec pod install --repo-update
cd ..
../scripts/install_prereqs/storage.sh
- name: Build Swift
run: ./scripts/test.sh
env:
SWIFT_SUFFIX: Swift
# TODO(ncooke3): Consider synthesizing Podfile for CocoaPods based test.
# cocoapods:
# name: cocoapods
# runs-on: macOS-15
# env:
# SPM: false
# LEGACY: true
# OS: iOS
# DEVICE: iPhone 16
# TEST: true
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Setup
# run: |
# cd storage/LegacyStorageQuickstart
# gem install bundler
# bundle install
# gem install xcpretty
# bundle exec pod install --repo-update
# cd ..
# ../scripts/install_prereqs/storage.sh
# - name: Build Swift
# run: ./scripts/test.sh
# env:
# SWIFT_SUFFIX: Swift

spm:
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }})
Expand Down
Loading