Skip to content

Commit

Permalink
xcodebuild_Ventura
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Oct 15, 2023
1 parent dd0b363 commit 56eb950
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion .github/workflows/xcodebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
- version: '13.4'
- version: '14.0.1'
- version: '14.2'
- version: '14.3'
xcode_flags: ['-scheme Yams -project Yams.xcodeproj']
runs-on: macos-12
env:
Expand Down Expand Up @@ -94,3 +93,37 @@ jobs:
if: always()
run: xcodebuild ${{ matrix.xcode_flags }} build -sdk watchsimulator | xcpretty
shell: bash

xcodebuild_Ventura:
strategy:
matrix:
xcode:
- version: '14.3'
- version: '15.0'
xcode_flags: ['-scheme Yams -project Yams.xcodeproj']
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode.version }}.app
steps:
- uses: actions/checkout@v3
- run: xcodebuild -version
- name: macOS with UTF16
if: always()
run: YAMS_DEFAULT_ENCODING=UTF16 xcodebuild ${{ matrix.xcode_flags }} test | xcpretty
shell: bash
- name: macOS with UTF8
if: always()
run: YAMS_DEFAULT_ENCODING=UTF8 xcodebuild ${{ matrix.xcode_flags }} test | xcpretty
shell: bash
- name: iPhone Simulator
if: always()
run: xcodebuild ${{ matrix.xcode_flags }} test -sdk iphonesimulator -destination "name=iPhone 8" | xcpretty
shell: bash
- name: Apple TV Simulator
if: always()
run: xcodebuild ${{ matrix.xcode_flags }} test -sdk appletvsimulator -destination "name=Apple TV 4K (2nd generation)" | xcpretty
shell: bash
- name: watchOS Simulator
if: always()
run: xcodebuild ${{ matrix.xcode_flags }} build -sdk watchsimulator | xcpretty
shell: bash

0 comments on commit 56eb950

Please sign in to comment.