Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Jan 27, 2025
1 parent 6dbbf7f commit 40c9f40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ jobs:
- name: iOS 17, iPhone 15
script: test:ios
osVersion: '17.5'
deviceModel: iPhone 15
deviceModel: 'iPhone 15'
developerDir: CI_XCODE_16
- name: iOS 18, iPhone 16
script: test:ios
osVersion: '18.1'
deviceModel: iPhone 16
deviceModel: 'iPhone 16'
developerDir: CI_XCODE_16
- name: macOS 14
script: test:macos
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ starters_path = File.join(SCRIPT_PATH, 'ParseStarterProject')
puts "Device model: #{ENV['DEVICE_MODEL']}"
puts "OS version: #{ENV['OS_VERSION']}"

ios_simulator = "platform=\"iOS Simulator\",name=#{ENV['DEVICE_MODEL'] || 'iPhone 16'},OS=#{ENV['OS_VERSION'] || '17.0'}"
ios_simulator = "platform=\"iOS Simulator\",name=\"#{ENV['DEVICE_MODEL'] || 'iPhone 16'}\",OS=\"#{ENV['OS_VERSION'] || '17.0'}\""
tvos_simulator = 'platform="tvOS Simulator",name="Apple TV"'
watchos_simulator = 'platform="watchOS Simulator",name="Apple Watch Series 10 (46mm)"'

Expand Down

0 comments on commit 40c9f40

Please sign in to comment.