Skip to content

Commit

Permalink
[CI] Fix Xcode / Simulator versions (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Nov 5, 2023
1 parent 671e568 commit aff37b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,31 @@ jobs:
test:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- name: Test
run: xcodebuild test -scheme "Zen Tuner" -destination platform="iOS Simulator,name=iPhone 15 Pro Max,OS=17.0"
run: xcodebuild test -scheme "Zen Tuner" -destination platform="iOS Simulator,name=iPhone 15 Pro Max,OS=17.0.1"
test_packages:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- name: Test
run: swift test --package-path Packages/MicrophonePitchDetector
macos:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- name: Build macOS
run: xcodebuild build -scheme "Zen Tuner" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
watchos:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- name: Build watchOS
Expand Down

0 comments on commit aff37b0

Please sign in to comment.