Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Try to make both Cirrus and LUCI happy
  • Loading branch information
stuartmorgan-g committed Feb 17, 2023
commit 4a6684f458cdcc13af3ab04690aeb841c7e481e2
5 changes: 4 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,11 @@ task:
matrix:
CHANNEL: "master"
CHANNEL: "stable"
# Create an iPhone 13, to match what is available on LUCI, since Pigeon tests
# currently have a hard-coded device.
create_simulator_script:
- .ci/scripts/create_simulator.sh
- xcrun simctl list
- xcrun simctl create "iPhone 13" com.apple.CoreSimulator.SimDeviceType.iPhone-13 com.apple.CoreSimulator.SimRuntime.iOS-16-0
local_tests_script:
# script/configs/linux_only_custom_test.yaml
# Custom tests need Chrome for these packages. (They run in linux-custom_package_tests)
Expand Down
2 changes: 1 addition & 1 deletion packages/pigeon/tool/shared/test_suites.dart
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Future<int> _runIOSPluginUnitTests(String testPluginPath) async {
return runXcodeBuild(
'$examplePath/ios',
sdk: 'iphonesimulator',
destination: 'platform=iOS Simulator,name=iPhone 14',
destination: 'platform=iOS Simulator,name=iPhone 13',
extraArguments: <String>['test'],
);
}
Expand Down