Run build-for-testing.sh on Xcode 15.3 to match FTL #538
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Storage | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/storage.yml' | |
- 'storage/**' | |
- 'scripts/*' | |
- 'scripts/storage.sh' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/storage.yml' | |
- 'storage/**' | |
- 'scripts/*' | |
- 'scripts/storage.sh' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
env: | |
SAMPLE: Storage | |
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 | |
spm: | |
name: spm (Xcode ${{ matrix.xcode }} - ${{ matrix.os }}) | |
runs-on: macOS-15 | |
strategy: | |
matrix: | |
xcode: ["16.1"] | |
os: [iOS, tvOS, macOS] | |
include: | |
- os: iOS | |
device: iPhone 16 | |
- os: tvOS | |
device: Apple TV 4K (3rd generation) (at 1080p) | |
- os: macOS | |
device: localhost | |
env: | |
SETUP: storage | |
SPM: true | |
DIR: storage/StorageExample | |
OS: ${{ matrix.os }} | |
DEVICE: ${{ matrix.device }} | |
TEST: false | |
XCODE_VERSION: ${{ matrix.xcode }} | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup | |
run: | | |
gem install xcpretty | |
cd $SETUP | |
../scripts/install_prereqs/${SETUP}.sh | |
- name: Build and Test SwiftUI (${{ matrix.os }}) | |
run: ./scripts/test.sh |